mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
27 lines
928 B
Bash
Executable File
27 lines
928 B
Bash
Executable File
pkgname=qbittorrent
|
|
pkgver=3.3.16
|
|
pkgrel=1
|
|
pkgdesc="A bittorrent client written in C++ / Qt using the good libtorrent library"
|
|
arch=('x86_64')
|
|
url="http://www.qbittorrent.org/"
|
|
license=('GPL')
|
|
depends=('qt5-base' 'libtorrent-rasterbar>=1.0.6' 'xdg-utils' 'boost-libs' 'python3' 'geoip-database')
|
|
makedepends=('boost' 'geoip' 'qt5-tools')
|
|
categories=('network')
|
|
screenshot=('http://sourceforge.net/projects/qbittorrent/screenshots/242189.jpg')
|
|
install=qbittorrent.install
|
|
source=("https://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.xz")
|
|
sha256sums=('ea08a61872c397258c2627780f6e09fe777189d9a57cc5e02a656da9aeb0be57')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make INSTALL_ROOT=${pkgdir} install
|
|
install -Dm644 COPYING ${pkgdir}/usr/share/licenses/$pkgname/COPYING
|
|
}
|