#!/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 PLUGDIR=$SRCDIR/plugins DOCDIR=$SRCDIR/doc PIXMAPDIR=$SRCDIR/pixmaps rm portable_out/build/deadbeef-$VERSION-static-i686.tar.bz2 cd portable tar jcvf ../portable_out/build/deadbeef-$VERSION-static-i686.tar.bz2\ $SRCDIR/deadbeef\ $SRCDIR/deadbeef.png\ $DOCDIR\ $PLUGDIR/aac.so\ $PLUGDIR/adplug.so\ $PLUGDIR/alsa.so\ $PLUGDIR/artwork.so\ $PLUGDIR/cdda.so\ $PLUGDIR/dca.so\ $PLUGDIR/ddb_gui_GTK2.fallback.so\ $PLUGDIR/ddb_gui_GTK2.so\ $PLUGDIR/ffap.so\ $PLUGDIR/ffmpeg.so\ $PLUGDIR/flac.so\ $PLUGDIR/gme.so\ $PLUGDIR/hotkeys.so\ $PLUGDIR/lastfm.so\ $PLUGDIR/m3u.so\ $PLUGDIR/mms.so\ $PLUGDIR/mpgmad.so\ $PLUGDIR/musepack.so\ $PLUGDIR/notify.so\ $PLUGDIR/nullout.so\ $PLUGDIR/oss.so\ $PLUGDIR/shellexec.so\ $PLUGDIR/sid.so\ $PLUGDIR/sndfile.so\ $PLUGDIR/supereq.so\ $PLUGDIR/tta.so\ $PLUGDIR/vfs_curl.so\ $PLUGDIR/vfs_zip.so\ $PLUGDIR/vorbis.so\ $PLUGDIR/vtx.so\ $PLUGDIR/wavpack.so\ $PLUGDIR/wildmidi.so\ $PLUGDIR/ao.so\ $PLUGDIR/shn.so\ $PLUGDIR/dumb.so\ $PLUGDIR/converter.so\ $PLUGDIR/converter_gtkui.so\ $PLUGDIR/convpresets\ $PLUGDIR/pulse.so\ $PLUGDIR/dsp_libsrc.so\ $PLUGDIR/mono2stereo.so\ $PIXMAPDIR\ $SRCDIR/locale cd ..