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.
20 lines
608 B
20 lines
608 B
9 years ago
|
# This program includes libfresh, but since it's only needed by this, and has seen no versioned release, I'll just include it in this package.
|
||
|
import "compile/qt"
|
||
|
import "download/git"
|
||
|
|
||
|
name=qwbfsmanager
|
||
9 years ago
|
version=1.2.6
|
||
9 years ago
|
update_url="https://github.com/pasnox/$name/releases"
|
||
|
update_names="v$version.tar.gz"
|
||
9 years ago
|
|
||
|
# Downloading this way to get dependencies.
|
||
9 years ago
|
download_git "https://github.com/pasnox/$name" "$version"
|
||
9 years ago
|
header_end
|
||
|
|
||
9 years ago
|
cd "$name-$version"
|
||
9 years ago
|
sed -i -e "s/CONFIG \*= fresh//" qwbfs.pro qwbfs/qwbfs.pro # Make sure we always use the bundled library.
|
||
|
|
||
|
compile_qt 5
|
||
|
|
||
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh et:
|