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/python'
|
|
|
|
import 'compile/qt'
|
|
|
|
|
|
|
|
name=PyQt5
|
|
|
|
version=5.7
|
|
|
|
update_url='https://www.riverbankcomputing.com/software/pyqt/download5'
|
|
|
|
|
|
|
|
dlextract "http://sourceforge.net/projects/pyqt/files/$name/PyQt-$version/${name}_gpl-$version.tar.gz" \
|
|
|
|
'e3dc21f31fd714659f0688e1eb31bacf'
|
|
|
|
header_end
|
|
|
|
|
|
|
|
cd "${name}_gpl-$version"
|
|
|
|
|
|
|
|
qmake="$(command -v "$(compile_qt_get_cmd qmake 5)")" || echo "Missing qmake for Qt5"
|
|
|
|
[ "$qmake" ]
|
|
|
|
|
|
|
|
python3 configure.py --qmake "$qmake" --confirm-license
|
|
|
|
make
|
|
|
|
make DESTDIR="$dir_install" INSTALL_ROOT="$dir_install" install
|
|
|
|
|
|
|
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh et:
|