#!/bin/bash # # lash.SlackBuild is free software; you can redistribute it and/or modify it under the # terms of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or any later version. # # lash.SlackBuild is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with # this program; if not, write to the Free Software Foundation, Inc., 59 Temple # Place - Suite 330, Boston, MA 02111-1307, USA # # default settings PACKAGE="lash" PACKAGE_EXT="bz2" VERSION=${VERSION:=0.6.0} BUILD=${BUILD:=1} if [ -f ~/.slackbuildrc ]; then . ~/.slackbuildrc elif [ -f ../../runtime/slackbuildrc ]; then . ../../runtime/slackbuildrc fi check_required SRC="$PACKAGE-$VERSION~rc2.tar.$PACKAGE_EXT" URL="http://download.savannah.gnu.org/releases/lash/$SRC" get_source $SRC $URL unpack_source $SRC $PACKAGE-$VERSION.594 CFLAGS="$SLKCFLAGS" ./configure \ --prefix=/usr \ --enable-static=no \ --enable-shared=yes \ --libdir=${LIBDIR} \ --with-default-dir=/var/lib/audio-projects \ --with-docdir=/usr/doc/$PACKAGE-$VERSION \ --build=$ARCH-slackware-linux || exit 1 make -j3 || exit 2 make DESTDIR=$PKG install # Create project store mkdir -p $PKG/var/lib/audio-projects mkdir -p $DOCS cp -a AUTHORS COPYING ChangeLog* INSTALL NEWS README* TODO $DOCS cp docs/lash-manual-html-one-page/lash-manual.html $DOCS cp docs/api-proposal.html $DOCS # Initialisation, works from Slackware 7.1 and up. # mkdir -p $PKG/etc/rc.d/init.d cp $CWD/init.lash $PKG/etc/rc.d/init.d/lash chmod 0755 $PKG/etc/rc.d/init.d/lash mkdir -p $PKG/var/log/setup cp $CWD/setup.lash $PKG/var/log/setup chmod 0755 $PKG/var/log/setup/setup.lash rm -rf $PKG/usr/lib//python2.5 fixup_package $PKG # Clean up the extra stuff: set +u if [ "$1" = "--cleanup" ]; then rm -rf $TMP/$PACKAGE-$VERSION rm -rf $PKG fi