Was supposed to be a linux distribution, now just a collection of build scripts for packages on top of (ideally) any distribution.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import 'compile/configure'
|
|
|
|
|
|
|
|
name=qbittorrent
|
|
|
|
version=3.3.8
|
|
|
|
update_url='http://www.qbittorrent.org/download.php'
|
|
|
|
|
|
|
|
define_option '!qt4: Build for Qt4 instead of Qt5'
|
|
|
|
|
|
|
|
dlextract "http://sourceforge.net/projects/$name/files/$name/$name-$version/$name-$version.tar.xz" \
|
|
|
|
'2d22e74ac1aae8d716b4a87911289115'
|
|
|
|
header_end
|
|
|
|
|
|
|
|
cd "$name-$version"
|
|
|
|
compile_configure -I -- \
|
|
|
|
--with-qtsingleapplication=shipped \
|
|
|
|
$(option qt4 && echo '--with-qt4 --with-qjson=shipped' || echo '--without-qt4')
|
|
|
|
make INSTALL_ROOT="$dir_install" install
|
|
|
|
|
|
|
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab:
|