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.
19 lines
599 B
19 lines
599 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
|
||
|
version=1.2.5
|
||
|
update_url="https://api.github.com/repos/pasnox/$name/tags"
|
||
|
|
||
|
# Downloading this way to get dependencies.
|
||
|
download_git "https://github.com/pasnox/$name" "v$version"
|
||
|
header_end
|
||
|
|
||
|
getfile "v$version"; cd "v$version"
|
||
|
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:
|