mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
25 lines
842 B
Bash
25 lines
842 B
Bash
pkgname=qbittorrent
|
|
pkgver=4.1.5
|
|
pkgrel=1
|
|
pkgdesc="A bittorrent client written in C++ / Qt using the good libtorrent library"
|
|
arch=('x86_64')
|
|
url="https://www.qbittorrent.org/"
|
|
license=('GPL')
|
|
depends=('qt5-base' 'qt5-svg' 'hicolor-icon-theme' 'libtorrent-rasterbar' 'xdg-utils' 'boost-libs' 'python3' 'geoip-database')
|
|
makedepends=('boost' 'geoip' 'qt5-tools')
|
|
categories=('network')
|
|
source=("https://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.xz")
|
|
sha256sums=('866e07c7886dea62cf0d7dc9a68d9aee1931cd18483b418298b2b072c9afd62a')
|
|
|
|
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
|
|
}
|