contrib/qbittorrent/Pkgfile

22 lines
614 B
Plaintext
Raw Normal View History

2018-03-31 22:50:34 +02:00
# 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
2018-05-28 00:30:11 +02:00
version=4.1.1
2018-03-31 22:50:34 +02:00
release=1
2018-05-28 00:30:11 +02:00
source=(https://github.com/${name}/qBittorrent/archive/release-${version}.tar.gz)
2018-03-31 22:50:34 +02:00
build() {
2018-05-28 00:30:11 +02:00
cd qBittorrent-release-${version}
2018-03-31 22:50:34 +02:00
./configure --prefix=/usr
make
make INSTALL_ROOT=${PKG} install
2018-05-28 00:30:11 +02:00
# remove group write permissions
find ${PKG} -type f -a -perm -g+w | xargs chmod g-w
2018-03-31 22:50:34 +02:00
}