2013-03-30 20:08:45 +00:00
|
|
|
# $Id: PKGBUILD 86795 2013-03-22 10:46:14Z svenstaro $
|
|
|
|
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
|
2013-12-02 04:18:42 +00:00
|
|
|
# Contributor: Imanol Celaya <ornitorrincos@archlinux-es.org>
|
2013-03-30 20:08:45 +00:00
|
|
|
# Contributor: Lukas Jirkovsky <l.jirkovsky@gmail.com>
|
|
|
|
# Contributor: Dan Vratil <progdan@progdansoft.com>
|
|
|
|
# Contributor: thotypous <matiasΘarchlinux-br·org>
|
|
|
|
# Contributor: delor <bartekpiech gmail com>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
2015-02-25 17:47:09 +00:00
|
|
|
# - patch distributed botan version for ARM
|
2014-09-19 18:50:33 +00:00
|
|
|
# - drop valgrind optdepend
|
2013-03-30 20:08:45 +00:00
|
|
|
|
|
|
|
pkgname=qtcreator
|
2016-08-25 12:42:10 +00:00
|
|
|
pkgver=4.1.0
|
|
|
|
_pkgver=v4.1.0
|
2016-10-30 04:23:56 +00:00
|
|
|
pkgrel=4
|
2013-03-30 20:08:45 +00:00
|
|
|
pkgdesc='Lightweight, cross-platform integrated development environment'
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url='http://qt-project.org'
|
|
|
|
license=('LGPL')
|
2016-10-30 04:23:56 +00:00
|
|
|
depends=('qt5-tools' 'qt5-declarative' 'qt5-script' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-webkit' 'clang')
|
|
|
|
makedepends=('git' 'mesa')
|
2013-03-30 20:08:45 +00:00
|
|
|
options=('docs')
|
2016-04-04 12:27:42 +00:00
|
|
|
optdepends=('qt5-doc: integrated Qt documentation'
|
|
|
|
'qt5-examples: welcome page examples'
|
2016-09-19 15:58:47 +00:00
|
|
|
'qt5-translations: for other languages'
|
2016-04-04 12:27:42 +00:00
|
|
|
'gdb: debugger'
|
|
|
|
'cmake: cmake project support'
|
|
|
|
'openssh-askpass: ssh support'
|
|
|
|
'git: git support'
|
|
|
|
'mercurial: mercurial support'
|
2016-10-30 04:23:56 +00:00
|
|
|
'bzr: bazaar support')
|
2015-06-03 19:54:58 +00:00
|
|
|
source=("git://code.qt.io/qt-creator/qt-creator.git#tag=${_pkgver}"
|
|
|
|
"git://code.qt.io/qt-labs/qbs.git"
|
2016-05-13 01:00:15 +00:00
|
|
|
'qt-creator_llvmincdir.patch'
|
2015-02-25 17:47:09 +00:00
|
|
|
'qtcreator.desktop'
|
|
|
|
'0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch')
|
2013-12-02 04:18:42 +00:00
|
|
|
md5sums=('SKIP'
|
|
|
|
'SKIP'
|
2015-04-25 22:00:22 +00:00
|
|
|
'800c94165c547b64012a207d9830250a'
|
2015-02-25 17:47:09 +00:00
|
|
|
'49924cb71a664d079b8283a7173bc14f')
|
2013-03-30 20:08:45 +00:00
|
|
|
|
2013-12-02 04:18:42 +00:00
|
|
|
prepare() {
|
2014-08-16 18:35:55 +00:00
|
|
|
cd qt-creator
|
|
|
|
git submodule init
|
|
|
|
git config submodule.qbs.url $srcdir/qbs
|
|
|
|
git submodule update
|
2015-02-25 17:47:09 +00:00
|
|
|
|
2016-05-13 01:00:15 +00:00
|
|
|
# Fix build with GCC 6 (patch from Fedora)
|
|
|
|
# https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/Q5SWCUUMWQ4EMS7CU2CBOZHV3WZYOOTT/
|
|
|
|
patch -Np1 -i ../qt-creator_llvmincdir.patch
|
|
|
|
|
2015-02-25 17:47:09 +00:00
|
|
|
git apply ../0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch
|
2013-12-02 04:18:42 +00:00
|
|
|
}
|
2013-03-30 20:08:45 +00:00
|
|
|
|
2013-12-02 04:18:42 +00:00
|
|
|
build() {
|
2013-03-30 20:08:45 +00:00
|
|
|
[[ -d build ]] && rm -r build
|
|
|
|
mkdir build && cd build
|
|
|
|
|
2015-08-21 17:03:29 +00:00
|
|
|
LLVM_INSTALL_DIR=/usr qmake CONFIG+=journald -r ../qt-creator/qtcreator.pro
|
2013-03-30 20:08:45 +00:00
|
|
|
make
|
|
|
|
make docs -j1
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd build
|
|
|
|
|
|
|
|
make INSTALL_ROOT="${pkgdir}/usr/" install
|
|
|
|
make INSTALL_ROOT="${pkgdir}/usr/" install_docs
|
|
|
|
|
2014-08-16 18:35:55 +00:00
|
|
|
# Workaround for FS#40583
|
|
|
|
mv "${pkgdir}"/usr/bin/qtcreator "${pkgdir}"/usr/bin/qtcreator-bin
|
|
|
|
echo "#!/bin/sh" > "${pkgdir}"/usr/bin/qtcreator
|
|
|
|
echo "QT_LOGGING_TO_CONSOLE=1 qtcreator-bin \$@" >> "${pkgdir}"/usr/bin/qtcreator
|
|
|
|
chmod +x "${pkgdir}"/usr/bin/qtcreator
|
|
|
|
|
2013-03-30 20:08:45 +00:00
|
|
|
install -Dm644 ${srcdir}/qtcreator.desktop ${pkgdir}/usr/share/applications/qtcreator.desktop
|
2016-05-13 01:00:15 +00:00
|
|
|
install -Dm644 ${srcdir}/qt-creator/LICENSE.GPL3-EXCEPT ${pkgdir}/usr/share/licenses/qtcreator/LICENSE.GPL3-EXCEPT
|
2013-03-30 20:08:45 +00:00
|
|
|
}
|