2009-03-18 13:02:53 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
. config/options
|
|
|
|
|
|
|
|
|
|
$SCRIPTS/build toolchain
|
|
|
|
|
$SCRIPTS/build elisa
|
|
|
|
|
|
|
|
|
|
. config/options.python
|
|
|
|
|
|
2009-05-09 03:34:25 +02:00
|
|
|
PLUGINS_BAD="amazon amp avahi coherence daap database discogs dvd elisa_updater favorites filtered_shares gstreamer http_client ipod osso pigment poblesec rss search shelf themoviedb thetvdb"
|
|
|
|
|
|
2009-05-16 23:35:27 +02:00
|
|
|
cd $PKG_BUILD
|
2009-03-18 13:02:53 +01:00
|
|
|
|
2009-05-09 03:34:25 +02:00
|
|
|
mkdir -p dist
|
|
|
|
|
for plugin in $PLUGINS_BAD; do
|
|
|
|
|
(cd elisa/plugins/$plugin; \
|
|
|
|
|
$PYTHON setup.py bdist_egg ; \
|
|
|
|
|
);
|
|
|
|
|
done
|
2009-03-18 13:02:53 +01:00
|
|
|
|
2009-05-09 03:34:25 +02:00
|
|
|
## --exclude-source-files
|