commit a897ffc9e412d7913cb76b9b8ecdd8ae59f1e8e9 Author: Thomas Penteker <tek@serverop.de> Date: Mon Nov 30 00:32:57 2015 +0100 rtorrent: 0.9.4 -> 0.9.6 diff --git a/rtorrent/.footprint b/rtorrent/.footprint index 918ec7b..85b3db7 100644 --- a/rtorrent/.footprint +++ b/rtorrent/.footprint @@ -1,3 +1,7 @@ -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/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/rtorrent +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/rtorrent.1.gz diff --git a/rtorrent/.md5sum b/rtorrent/.md5sum index 019114a..b9ecbd0 100644 --- a/rtorrent/.md5sum +++ b/rtorrent/.md5sum @@ -1 +1 @@ -fd9490a2ac67d0fa2a567c6267845876 rtorrent-0.9.4.tar.gz +b8b4009f95f8543244ae1d23b1810d7c 0.9.6.tar.gz diff --git a/rtorrent/Pkgfile b/rtorrent/Pkgfile index 00a9d30..7e37a66 100644 --- a/rtorrent/Pkgfile +++ b/rtorrent/Pkgfile @@ -4,14 +4,19 @@ # Depends on: libtorrent libsigc++ name=rtorrent -version=0.9.4 +version=0.9.6 release=1 -source=(http://libtorrent.rakshasa.no/downloads/rtorrent-$version.tar.gz) +source=(https://github.com/rakshasa/rtorrent/archive/${version}.tar.gz) build() { cd $name-$version + + # remove cppunit dependency + sed -i '/AM_PATH_CPPUNIT(.*)/d' configure.ac + ./autogen.sh + ./configure --prefix=/usr --mandir=/usr/man --enable-debug=no make make install DESTDIR=$PKG - #install -m 644 -D doc/rtorrent.1 $PKG/usr/man/man1/rtorrent.1 + install -m 644 -D doc/old/rtorrent.1 $PKG/usr/share/man/man1/rtorrent.1 }