mirror of
git://slackware.nl/current.git
synced 2025-01-16 15:41:42 +01:00
b76270bf9e
Wed May 19 08:58:23 UTC 2010 Slackware 13.1 x86_64 stable is released! Lots of thanks are due -- see the RELEASE_NOTES and the rest of the ChangeLog for credits. The ISOs are on their way to replication, a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. We are taking pre-orders now at store.slackware.com, and offering a discount if you sign up for a subscription. Consider picking up a copy to help support the project. Thanks again to the Slackware community for testing, contributing, and generally holding us to a high level of quality. :-) Enjoy!
38 lines
1 KiB
Bash
Executable file
38 lines
1 KiB
Bash
Executable file
#!/bin/sh
|
|
CWD=`pwd`
|
|
PKG=/tmp/package-bittornado
|
|
|
|
VERSION=0.3.18
|
|
ARCH=noarch
|
|
BUILD=2
|
|
|
|
rm -rf $PKG
|
|
mkdir -p $PKG
|
|
|
|
cd /tmp
|
|
rm -rf BitTornado-CVS
|
|
tar xjvf $CWD/BitTornado-$VERSION.tar.bz2
|
|
cd BitTornado-CVS
|
|
chown -R root.root .
|
|
find . -perm 775 -exec chmod 755 {} \;
|
|
find . -perm 664 -exec chmod 644 {} \;
|
|
python setup.py build install --root=$PKG
|
|
# Add btdownloadxterm.sh (this just opens an xterm for btdownloadcurses.py so
|
|
# that it can work as a MIME handler from mailcap):
|
|
mkdir -p $PKG/usr/bin
|
|
zcat $CWD/btdownloadxterm.sh > $PKG/usr/bin/btdownloadxterm.sh
|
|
chmod 755 $PKG/usr/bin/btdownloadxterm.sh
|
|
chown -R root.bin $PKG/usr/bin
|
|
mkdir -p $PKG/usr/doc/BitTornado-$VERSION
|
|
cp -a \
|
|
LICENSE.txt README.txt \
|
|
docs/*.* \
|
|
$PKG/usr/doc/BitTornado-$VERSION
|
|
mkdir -p $PKG/install
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
# Add support for using btdownloadcurses.py instead of btdownloadgui.py in /etc/mailcap:
|
|
zcat $CWD/doinst.sh > $PKG/install/doinst.sh
|
|
|
|
cd $PKG
|
|
makepkg -l y -c n ../bittornado-$VERSION-$ARCH-$BUILD.txz
|
|
|