diff options
author | Thomas Penteker <tek@serverop.de> | 2015-11-30 00:32:57 +0100 |
---|---|---|
committer | Thomas Penteker <tek@serverop.de> | 2015-11-30 00:32:57 +0100 |
commit | a897ffc9e412d7913cb76b9b8ecdd8ae59f1e8e9 (patch) | |
tree | 48c9b5960b6630a919283cca4c6cb71df11fb7d2 /rtorrent | |
parent | e9cde8095ef986f9f16e192c9871e59ada868154 (diff) | |
download | contrib-a897ffc9e412d7913cb76b9b8ecdd8ae59f1e8e9.tar.gz contrib-a897ffc9e412d7913cb76b9b8ecdd8ae59f1e8e9.tar.xz |
rtorrent: 0.9.4 -> 0.9.6
Diffstat (limited to 'rtorrent')
-rw-r--r-- | rtorrent/.footprint | 10 | ||||
-rw-r--r-- | rtorrent/.md5sum | 2 | ||||
-rw-r--r-- | rtorrent/Pkgfile | 11 |
3 files changed, 16 insertions, 7 deletions
diff --git a/rtorrent/.footprint b/rtorrent/.footprint index 918ec7b22..85b3db710 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 019114aab..b9ecbd0cb 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 00a9d309e..7e37a6656 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 } |