#!/bin/sh CWD=`pwd` TMP=/tmp PKG=$TMP/package-lftp VERSION=3.7.4 ARCH=alpha BUILD=1 TARGET=$ARCH-alphaslack-linux rm -rf $PKG mkdir -p $PKG ( cd $TMP rm -rf lftp-$VERSION tar xjf $CWD/lftp-$VERSION.tar.bz2 cd lftp-$VERSION chown -R root.root . ./configure \ --prefix=/usr \ --mandir=/usr/man \ --with-openssl \ --with-gnutls \ --with-profiling \ --build=$TARGET || exit 1 make -j2 || exit 1 make install DESTDIR=$PKG chown -R root.bin $PKG/usr/bin ( cd $PKG find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null ) mv $PKG/etc/lftp.conf $PKG/etc/lftp.conf.new mkdir -p $PKG/usr/doc/lftp-$VERSION cp -a ABOUT-NLS BUGS COPYING ChangeLog FAQ FEATURES INSTALL MIRRORS NEWS README README.debug-levels README.modules THANKS TODO lftp.lsm $PKG/usr/doc/lftp-$VERSION chmod 644 $PKG/usr/doc/lftp-$VERSION/* gzip -9 $PKG/usr/man/man?/* mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc zcat $CWD/doinst.sh.gz > $PKG/install/doinst.sh cd $PKG makepkg -l y -c n $TMP/lftp-$VERSION-$ARCH-$BUILD.tgz ) 2>&1 | tee $TMP/lftp.build.log