diff options
author | Bartłomiej Piotrowski <b@bpiotrowski.pl> | 2013-05-13 11:56:30 +0200 |
---|---|---|
committer | Bartłomiej Piotrowski <b@bpiotrowski.pl> | 2013-05-13 11:59:05 +0200 |
commit | 02b10fe05cfd8a0cb3668b280adee7d0e4a9d732 (patch) | |
tree | 27acf99a56f702f5e4c2673fa7bf9a067a5ae3b5 /main/libtorrent/APKBUILD | |
parent | 17d35d16eae6a6c1ebfabc66828a700d61b023f5 (diff) | |
download | aports-02b10fe05cfd8a0cb3668b280adee7d0e4a9d732.tar.bz2 aports-02b10fe05cfd8a0cb3668b280adee7d0e4a9d732.tar.xz |
main/libtorrent: upgrade to 0.13.3
Diffstat (limited to 'main/libtorrent/APKBUILD')
-rw-r--r-- | main/libtorrent/APKBUILD | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/main/libtorrent/APKBUILD b/main/libtorrent/APKBUILD index ec51d9046b..2f23d1f53b 100644 --- a/main/libtorrent/APKBUILD +++ b/main/libtorrent/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> pkgname=libtorrent -pkgver=0.13.2 +pkgver=0.13.3 pkgrel=0 pkgdesc='BitTorrent library written in C++' url='http://libtorrent.rakshasa.no/' @@ -13,19 +13,21 @@ options='libtool' source="http://libtorrent.rakshasa.no/downloads/${pkgname}-${pkgver}.tar.gz" build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "$srcdir"/$pkgname-$pkgver - ./configure \ - --prefix=/usr \ - --disable-debug \ - || return 1 + ./configure \ + --prefix=/usr \ + --disable-debug \ + || return 1 - make || return 1 + make || return 1 } package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install || return 1 + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" install || return 1 } -md5sums="96c0b81501357df402ab592f59ecaeab libtorrent-0.13.2.tar.gz" +md5sums="e94f6c590bb02aaf4d58618f738a85f2 libtorrent-0.13.3.tar.gz" +sha256sums="34317d6783b7f8d0805274c9467475b5432a246c0de8e28fc16e3b0b43f35677 libtorrent-0.13.3.tar.gz" +sha512sums="40f504db26d52b0c65fc1008c7b1465bde0e316c776028c5448bf15c6fd38389fad780b0c200933e51f63974a43942603e0103d45a98a3dd57f23f01a306ef25 libtorrent-0.13.3.tar.gz" |