diff options
author | Han Boetes <han@mijncomputer.nl> | 2006-11-13 21:12:21 +0100 |
---|---|---|
committer | Han Boetes <han@mijncomputer.nl> | 2006-11-13 21:12:21 +0100 |
commit | 32295a9faf0f964a313a84bb5a4e3fdeaf15e72f (patch) | |
tree | 48bd60cc85026b7f5effe956cd01e09d1e66234c /rtorrent | |
parent | 4d6af94f215944409f18f85d1804bc04c3d32efd (diff) | |
download | contrib-32295a9faf0f964a313a84bb5a4e3fdeaf15e72f.tar.gz contrib-32295a9faf0f964a313a84bb5a4e3fdeaf15e72f.tar.xz |
abiword: initial release
Diffstat (limited to 'rtorrent')
-rw-r--r-- | rtorrent/.footprint | 9 | ||||
-rw-r--r-- | rtorrent/.md5sum | 1 | ||||
-rw-r--r-- | rtorrent/Pkgfile | 26 |
3 files changed, 36 insertions, 0 deletions
diff --git a/rtorrent/.footprint b/rtorrent/.footprint new file mode 100644 index 000000000..7226e3463 --- /dev/null +++ b/rtorrent/.footprint @@ -0,0 +1,9 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/rtorrent +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/rtorrent.1.gz +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/rtorrent/ +-rwxr-xr-x root/root usr/share/rtorrent/rtorrent.rc diff --git a/rtorrent/.md5sum b/rtorrent/.md5sum new file mode 100644 index 000000000..88372c605 --- /dev/null +++ b/rtorrent/.md5sum @@ -0,0 +1 @@ +9077817e5a0f505e0b71add9c57b89f7 rtorrent-0.6.4.tar.gz diff --git a/rtorrent/Pkgfile b/rtorrent/Pkgfile new file mode 100644 index 000000000..e19da0d54 --- /dev/null +++ b/rtorrent/Pkgfile @@ -0,0 +1,26 @@ +# Description: curses frontend for libtorrent +# URL: http://libtorrent.rakshasa.no/ +# Maintainer: Han Boetes <han@mijncomputer.nl> +# Packager: Han Boetes <han@mijncomputer.nl> +# Depends on: libtorrent curl + +name=rtorrent +version=0.6.4 +release=1 +source="http://libtorrent.rakshasa.no/downloads/rtorrent-$version.tar.gz" + +build() +{ + if gcc --version |grep -q '4\.0\.'; then + export CXXFLAGS="$CXXFLAGS -fno-strength-reduce -fno-thread-jumps -fno-inline -fforce-addr" + fi + cd $name-$version + ./configure \ + --prefix=/usr \ + --disable-nls \ + --disable-debug + make + make install DESTDIR=$PKG + install -d $PKG/usr/share/$name/ + install doc/rtorrent.rc $PKG/usr/share/$name/ +} |