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>
|
2017-04-21 12:34:16 +00:00
|
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
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
|
|
|
|
2016-12-28 03:27:06 +00:00
|
|
|
buildarch=12
|
2016-12-14 13:40:06 +00:00
|
|
|
|
2013-03-30 20:08:45 +00:00
|
|
|
pkgname=qtcreator
|
2017-12-07 13:49:57 +00:00
|
|
|
pkgver=4.5.0
|
2017-10-06 16:21:17 +00:00
|
|
|
pkgrel=1
|
2013-03-30 20:08:45 +00:00
|
|
|
pkgdesc='Lightweight, cross-platform integrated development environment'
|
2017-12-07 13:49:57 +00:00
|
|
|
arch=('x86_64')
|
2013-03-30 20:08:45 +00:00
|
|
|
url='http://qt-project.org'
|
|
|
|
license=('LGPL')
|
2017-04-23 00:26:15 +00:00
|
|
|
depends=('qt5-tools' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-webengine' 'clang' 'qbs')
|
2016-12-14 13:40:06 +00:00
|
|
|
makedepends=('git' 'mesa' 'llvm')
|
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'
|
2017-03-30 12:57:31 +00:00
|
|
|
'x11-ssh-askpass: ssh support'
|
2016-04-04 12:27:42 +00:00
|
|
|
'git: git support'
|
|
|
|
'mercurial: mercurial support'
|
2016-10-30 04:23:56 +00:00
|
|
|
'bzr: bazaar support')
|
2017-05-25 01:51:21 +00:00
|
|
|
source=("http://download.qt.io/official_releases/qtcreator/${pkgver%.*}/${pkgver}/qt-creator-opensource-src-${pkgver}.tar.xz"
|
2015-02-25 17:47:09 +00:00
|
|
|
'0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch')
|
2017-12-07 13:49:57 +00:00
|
|
|
sha512sums=('9296ebef4a3d5ae40a9fa3a4039e77b8e407dfb52af3a88b4cc615a89e163d92de420d9db614bc689adc695879f0c2e1906e9a218e7a6b96c4b222d52c94912c'
|
2016-12-14 13:40:06 +00:00
|
|
|
'af0a0d5a2fadcfce14def65be73c99bff8227794b9ad2be333713c89e226e2c6b43802a802b6e30f3e6c1b4b77f31183bffdcca3404d9686f15fa84dfc64d1a1')
|
2013-03-30 20:08:45 +00:00
|
|
|
|
2013-12-02 04:18:42 +00:00
|
|
|
prepare() {
|
2017-05-25 01:51:21 +00:00
|
|
|
[[ -d build ]] && rm -r build
|
|
|
|
mkdir build
|
|
|
|
|
|
|
|
# fix hardcoded libexec path
|
|
|
|
sed -e 's|libexec\/qtcreator|lib\/qtcreator|g' -i qt-creator-opensource-src-${pkgver}/qtcreator.pri
|
|
|
|
# use system qbs
|
|
|
|
rm -r qt-creator-opensource-src-${pkgver}/src/shared/qbs
|
2016-05-13 01:00:15 +00:00
|
|
|
|
2017-05-25 01:51:21 +00:00
|
|
|
cd qt-creator-opensource-src-${pkgver}
|
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() {
|
2017-05-25 01:51:21 +00:00
|
|
|
cd build
|
2013-03-30 20:08:45 +00:00
|
|
|
|
2017-05-25 18:53:29 +00:00
|
|
|
qmake LLVM_INSTALL_DIR=/usr QBS_INSTALL_DIR=/usr CONFIG+=journald QMAKE_CFLAGS_ISYSTEM=-I \
|
|
|
|
DEFINES+=QBS_ENABLE_PROJECT_FILE_UPDATES "$srcdir"/qt-creator-opensource-src-${pkgver}/qtcreator.pro
|
2013-03-30 20:08:45 +00:00
|
|
|
make
|
2017-04-21 12:34:16 +00:00
|
|
|
make docs
|
2013-03-30 20:08:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd build
|
|
|
|
|
|
|
|
make INSTALL_ROOT="${pkgdir}/usr/" install
|
|
|
|
make INSTALL_ROOT="${pkgdir}/usr/" install_docs
|
|
|
|
|
2016-12-14 13:40:06 +00:00
|
|
|
install -Dm644 ${srcdir}/qt-creator-opensource-src-${pkgver}/LICENSE.GPL3-EXCEPT ${pkgdir}/usr/share/licenses/qtcreator/LICENSE.GPL3-EXCEPT
|
2013-03-30 20:08:45 +00:00
|
|
|
}
|