blob: 41cb17e87b617fa5a6bbc7b440bf88c352f9f2e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#!/bin/sh
# package for distribution
VERSION=`cat PORTABLE_VERSION | perl -ne 'chomp and print'`
BUILD=`cat PORTABLE_BUILD | perl -ne 'chomp and print'`
# main distro
SRCDIR=deadbeef-$VERSION-portable
PLUGDIR=$SRCDIR/plugins
DOCDIR=$SRCDIR/doc
PIXMAPDIR=$SRCDIR/pixmaps
tar jcvf deadbeef-$VERSION-portable-build$BUILD.tar.bz2\
$SRCDIR/deadbeef\
$SRCDIR/deadbeef.png\
$DOCDIR\
$PLUGDIR/alsa.so\
$PLUGDIR/oss.so\
$PLUGDIR/vfs_curl.so\
$PLUGDIR/artwork.so\
$PLUGDIR/gtkui.so\
$PLUGDIR/hotkeys.so\
$PLUGDIR/cdda.so\
$PLUGDIR/mpgmad.so\
$PLUGDIR/vorbis.so\
$PLUGDIR/wavpack.so\
$PLUGDIR/flac.so\
$PLUGDIR/ffap.so\
$PLUGDIR/musepack.so\
$PLUGDIR/notify.so\
$PLUGDIR/sndfile.so\
$PLUGDIR/supereq.so\
$PLUGDIR/tta.so\
$PIXMAPDIR
|