contrib/qbittorrent/Pkgfile

23 lines
646 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/
2019-10-28 10:18:07 +01:00
# Maintainer: unmaintained
# Depends on: qt5 libtorrent-rasterbar1 xdg-utils
2018-03-31 22:50:34 +02:00
name=qbittorrent
2019-11-13 02:37:45 +01:00
version=4.1.9.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
PKG_CONFIG_PATH="/usr/lib/libtorrent-rasterbar1/pkgconfig" \
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
}