desktop/libktorrent/PKGBUILD
Chaoting Liu b99d0e41ea ktorrent: update to 5.1.0
- libktorrent: 2.1
- signature added
2017-08-31 20:57:00 +01:00

32 lines
708 B
Bash

# Include global configuration
source ../kdeapps.conf
pkgname=libktorrent
pkgver=2.1
pkgrel=1
pkgdesc="A BitTorrent program for KDE"
arch=('x86_64')
url="http://ktorrent.org"
license=('GPL2')
depends=('qca-qt5' 'kio')
makedepends=('extra-cmake-modules' 'kdoctools' 'python3' 'boost' 'doxygen')
source=("http://download.kde.org/stable/ktorrent/5.1/${pkgname}-${pkgver}.tar.xz"{,.sig})
sha1sums=('e5600c1c81ccb65ad2c5589096c4b05d57577c68'
'SKIP')
validpgpkeys=('1EE5A3205904BAA2B88C0A9D24FD31940095C0E1') # Andrius \xc5\xa0tikonas
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
}
package() {
cd ${srcdir}/build
make DESTDIR=${pkgdir} install
}