author | Andrea Scarpino
<andrea@archlinux.org> 2010-09-10 12:13:27 UTC |
committer | Andrea Scarpino
<andrea@archlinux.org> 2010-09-10 12:13:27 UTC |
parent | 826c48b6ff938afa2f5c554f5f73daabbaa3ef41 |
PKGBUILD | +16 | -15 |
diff --git a/PKGBUILD b/PKGBUILD index 7577fa6..035e2d0 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,30 +1,31 @@ +# $Id $ # Maintainer: Ronald van Haren <ronald.archlinux.org> +# Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libktorrent -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 -pkgdesc="lib for ktorrentE" +pkgdesc="A BitTorrent library based on KDE Platform" arch=('i686' 'x86_64') url="http://ktorrent.org" license=('GPL2') depends=('kdelibs') -makedepends=('autoconf' 'perl' 'automoc4' 'cmake' 'kdepimlibs' 'kdebase-workspace' 'boost') -source=(http://ktorrent.org/downloads/4.0.2/${pkgname}-${pkgver}.tar.bz2) +makedepends=('automoc4' 'cmake' 'boost') +source=("http://ktorrent.org/downloads/4.0.3/${pkgname}-${pkgver}.tar.bz2") options=('libtool') -sha1sums=('00d38eb2f88331028002f7a1dae050ff6fd68161') +md5sums=('575d3e67a858a64364cb66b65716200b') build() { - cd ${srcdir} - mkdir build - cd build - cmake ../${pkgname}-${pkgver} \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_SKIP_RPATH=ON - make || return 1 + cd ${srcdir} + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make } package() { - cd ${srcdir}/build - make DESTDIR=${pkgdir} install + cd ${srcdir}/build + make DESTDIR=${pkgdir} install }