mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
b99d0e41ea
- libktorrent: 2.1 - signature added
32 lines
708 B
Bash
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
|
|
}
|