# $Id: PKGBUILD 122107 2011-05-02 07:24:22Z andrea $ # Maintainer: Ronald van Haren # Maintainer: Andrea Scarpino pkgname=libktorrent pkgver=1.1.1 pkgrel=1 pkgdesc="A BitTorrent protocol implementation" arch=('i686' 'x86_64' 'mips64el') url="http://ktorrent.org" license=('GPL2') depends=('kdelibs') makedepends=('automoc4' 'cmake' 'boost') source=("http://ktorrent.org/downloads/4.1.1/${pkgname}-${pkgver}.tar.bz2") options=('libtool') md5sums=('96de8dd6d6cea4255ce946bb4cd69836') build() { 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 }