mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
22 lines
457 B
Bash
Executable File
22 lines
457 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
|
|
$SCRIPTS/build toolchain
|
|
$SCRIPTS/build elisa
|
|
|
|
. config/options.python
|
|
|
|
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"
|
|
|
|
cd $PKG_BUILD
|
|
|
|
mkdir -p dist
|
|
for plugin in $PLUGINS_BAD; do
|
|
(cd elisa/plugins/$plugin; \
|
|
$PYTHON setup.py bdist_egg ; \
|
|
);
|
|
done
|
|
|
|
## --exclude-source-files
|