contrib/qbittorrent/Pkgfile
2018-05-28 01:30:11 +03:00

22 lines
614 B
Plaintext

# Description: Bittorrent client programmed in C++ / Qt that uses libtorrent
# URL: http://www.qbittorrent.org/
# Maintainer: Alexandr Savca, alexandr dot savca89 at gmail dot com
# Depends on: qt5 libtorrent-rasterbar xdg-utils
name=qbittorrent
version=4.1.1
release=1
source=(https://github.com/${name}/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
}