Changeset 1179afb6e19691d095fd1fc876b411cce15065c7

Show
Ignore:
Timestamp:
08/13/07 23:46:27 (1 year ago)
Author:
Pierre d'Herbemont <pdherbemont@videolan.org>
git-committer:
Pierre d'Herbemont <pdherbemont@videolan.org> 1187041587 +0000
git-parent:

[b2fc1b73042ae531ebfdbefa317130af657e96bf]

git-author:
Pierre d'Herbemont <pdherbemont@videolan.org> 1187041587 +0000
Message:

modules/meta_engine/luameta.c: Get meta (untested) and artwork using lua scripts.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Makefile.am

    rc47fbbe r1179afb  
    425425      $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/luaplaylist/`basename $${i}` ; \ 
    426426    done ; \ 
     427    $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/luameta 
     428    for i in $(srcdir)/share/luameta/*.* ; do \ 
     429      $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/luameta/`basename $${i}` ; \ 
     430    done ; \ 
    427431    $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/dialogs 
    428432    $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/js 
  • configure.ac

    r0cfa897 r1179afb  
    16531653  if test "x${have_lua}" = "xyes" ;  then 
    16541654     AC_DEFINE(HAVE_LUA, [], [Define if you have the lua library]) 
    1655      VLC_ADD_PLUGINS([luaplaylist]) 
    1656      VLC_ADD_LDFLAGS([luaplaylist],[$LUA_LIBS]) 
    1657      VLC_ADD_CFLAGS([luaplaylist],[$LUA_CFLAGS]) 
     1655     VLC_ADD_PLUGINS([luaplaylist luameta]) 
     1656     VLC_ADD_LDFLAGS([luaplaylist luameta],[$LUA_LIBS]) 
     1657     VLC_ADD_CFLAGS([luaplaylist luameta],[$LUA_CFLAGS]) 
    16581658  fi 
    16591659fi 
  • share/Makefile.am

    r4d417a8 r1179afb  
    246246 
    247247DIST_lua= \ 
     248    luameta/README.txt \ 
     249    luameta/googleimage.lua \ 
    248250    luaplaylist/README.txt \ 
    249251    luaplaylist/dailymotion.lua \