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/qt'
|
|
|
|
|
|
|
|
name=qt5
|
|
|
|
submodule=tools
|
|
|
|
majver=5.11
|
|
|
|
version=$majver.1
|
|
|
|
|
|
|
|
dlextract "http://download.qt.io/official_releases/qt/$majver/$version/submodules/qt$submodule-everywhere-src-$version.tar.xz" \
|
|
|
|
'41aea9500d21bd03bfa718b1d715cbba'
|
|
|
|
_
|
|
|
|
|
|
|
|
cd "qt$submodule-everywhere-src-$version"
|
|
|
|
compile_qt 5
|
|
|
|
|
|
|
|
mkdir -p "$dir_install/$dir_prefix/$dir_bin"
|
|
|
|
find "$dir_install/$dir_prefix/$dir_lib/$name/bin/" -type f -printf '%P\n' | while IFS= read bin; do
|
|
|
|
ln -s "/$dir_prefix/$dir_lib/$name/bin/$bin" "$dir_install/$dir_prefix/$dir_bin/$bin-$name"
|
|
|
|
done
|
|
|
|
|
|
|
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab:
|