Changeset 1179afb6e19691d095fd1fc876b411cce15065c7
- 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
| rc47fbbe |
r1179afb |
|
| 425 | 425 | $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/luaplaylist/`basename $${i}` ; \ |
|---|
| 426 | 426 | 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 ; \ |
|---|
| 427 | 431 | $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/dialogs |
|---|
| 428 | 432 | $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/js |
|---|
| r0cfa897 |
r1179afb |
|
| 1653 | 1653 | if test "x${have_lua}" = "xyes" ; then |
|---|
| 1654 | 1654 | 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]) |
|---|
| 1658 | 1658 | fi |
|---|
| 1659 | 1659 | fi |
|---|
| r4d417a8 |
r1179afb |
|
| 246 | 246 | |
|---|
| 247 | 247 | DIST_lua= \ |
|---|
| | 248 | luameta/README.txt \ |
|---|
| | 249 | luameta/googleimage.lua \ |
|---|
| 248 | 250 | luaplaylist/README.txt \ |
|---|
| 249 | 251 | luaplaylist/dailymotion.lua \ |
|---|