forked from ports/contrib
19 lines
534 B
Plaintext
19 lines
534 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.0.4
|
|
release=1
|
|
|
|
source=(http://sourceforge.net/projects/qbittorrent/files/${name}/${name}-${version}/${name}-${version}.tar.xz)
|
|
|
|
build() {
|
|
cd qbittorrent-${version}
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
make INSTALL_ROOT=${PKG} install
|
|
}
|