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.
|
|
|
# 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.6
|
|
|
|
update_url="https://github.com/pasnox/$name/releases"
|
|
|
|
update_names="v$version.tar.gz"
|
|
|
|
|
|
|
|
# Downloading this way to get dependencies.
|
|
|
|
download_git "https://github.com/pasnox/$name" "$version"
|
|
|
|
header_end
|
|
|
|
|
|
|
|
cd "$name-$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:
|