qtcreator: update to 4.2.0
This commit is contained in:
parent
b14d189218
commit
b02965fcac
1 changed files with 8 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'qtcreator'
|
# Template file for 'qtcreator'
|
||||||
pkgname=qtcreator
|
pkgname=qtcreator
|
||||||
version=4.1.0
|
version=4.2.0
|
||||||
revision=1
|
revision=1
|
||||||
wrksrc=qt-creator-opensource-src-${version}
|
wrksrc=qt-creator-opensource-src-${version}
|
||||||
build_style=qmake
|
build_style=qmake
|
||||||
|
@ -8,26 +8,25 @@ make_install_args="INSTALL_ROOT=\${DESTDIR}/usr"
|
||||||
hostmakedepends="perl python pkg-config"
|
hostmakedepends="perl python pkg-config"
|
||||||
makedepends="qt5-declarative-devel qt5-script-devel qt5-tools-devel"
|
makedepends="qt5-declarative-devel qt5-script-devel qt5-tools-devel"
|
||||||
depends="qt5-declarative-devel qt5-quickcontrols qt5-plugin-sqlite"
|
depends="qt5-declarative-devel qt5-quickcontrols qt5-plugin-sqlite"
|
||||||
nocross=yes
|
nocross="Requires system botan-devel for the target architecture"
|
||||||
short_desc="A cross-platform IDE for Qt developers"
|
short_desc="A cross-platform IDE for Qt developers"
|
||||||
maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
|
maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
|
||||||
license="LGPL-2.1"
|
license="LGPL-2.1"
|
||||||
homepage="http://wiki.qt.io/Category:Tools::QtCreator"
|
homepage="http://wiki.qt.io/Category:Tools::QtCreator"
|
||||||
distfiles="http://download.qt.io/official_releases/qtcreator/${version%.*}/${version}/${wrksrc}.tar.gz"
|
distfiles="http://download.qt.io/official_releases/qtcreator/${version%.*}/${version}/${wrksrc}.tar.gz"
|
||||||
checksum=412c0223dbfd86983b39e10e2c7cb42b530995cfe2f3aa3529ea3f1b00ffb403
|
checksum=0e05783bbc3a38aa935dd1b17191bcbc2af3cf6f7197865ee089fe094d0cf27b
|
||||||
|
|
||||||
do_build() {
|
do_build() {
|
||||||
# Note: A simple "make ${makejobs}" fails after libs because
|
# Note: A simple "make ${makejobs}" fails after libs because
|
||||||
# of files being removed and symlinked asynchronously.
|
# of files being removed and symlinked asynchronously.
|
||||||
# Fix this parallel build issue by first sequentially making subdirs
|
# Fix this parallel build issue by first sequentially making subdirs
|
||||||
cd src
|
cd src
|
||||||
make ${makejobs} libs
|
for _target in libs app plugins tools; do
|
||||||
make ${makejobs} app
|
make ${makejobs} ${make_build_args} ${_target}
|
||||||
make ${makejobs} plugins
|
done
|
||||||
make ${makejobs} tools
|
|
||||||
cd ..
|
cd ..
|
||||||
# ... and eventually the main Makefile
|
# ... and eventually make using the main Makefile
|
||||||
make ${makejobs}
|
make ${makejobs} ${make_build_args}
|
||||||
}
|
}
|
||||||
post_install() {
|
post_install() {
|
||||||
# Install the desktop file
|
# Install the desktop file
|
||||||
|
|
Loading…
Reference in a new issue