forked from ports/contrib
21 lines
578 B
Plaintext
21 lines
578 B
Plaintext
# Description: Bittorrent client programmed in C++ / Qt that uses libtorrent
|
|
# URL: https://www.qbittorrent.org/
|
|
# Maintainer: unmaintained
|
|
# Depends on: qt5 libtorrent-rasterbar xdg-utils
|
|
|
|
name=qbittorrent
|
|
version=4.2.1
|
|
release=1
|
|
source=(https://github.com/qbittorrent/qBittorrent/archive/release-${version}.tar.gz)
|
|
|
|
build() {
|
|
cd qBittorrent-release-${version}
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
make INSTALL_ROOT=${PKG} install
|
|
|
|
# remove group write permissions
|
|
#find ${PKG} -type f -a -perm -g+w | xargs chmod g-w
|
|
}
|