blob: c2257c51fa4e72eb78586ac83f3c95aed6b7ff3b (
plain)
1 # Description: Bittorrent client programmed in C++ / Qt that uses libtorrent
2 # URL: http://www.qbittorrent.org/
3 # Maintainer: Alexandr Savca, alexandr dot savca89 at gmail dot com
4 # Depends on: qt5 libtorrent-rasterbar xdg-utils
5
6 name=qbittorrent
7 version=4.1.0
8 release=1
9
10 source=(http://sourceforge.net/projects/qbittorrent/files/${name}/${name}-${version}/${name}-${version}.tar.xz)
11
12 build() {
13 cd qbittorrent-${version}
14
15 ./configure --prefix=/usr
16 make
17 make INSTALL_ROOT=${PKG} install
18 }
|