2013-03-30 20:08:45 +00:00
|
|
|
# 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>
|
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
|
2018-12-10 13:25:32 +00:00
|
|
|
pkgver=4.8.0
|
2018-12-18 01:27:22 +00:00
|
|
|
_clangver=7.0.1
|
|
|
|
pkgrel=2
|
2013-03-30 20:08:45 +00:00
|
|
|
pkgdesc='Lightweight, cross-platform integrated development environment'
|
2018-01-04 00:54:27 +00:00
|
|
|
arch=(x86_64)
|
2013-03-30 20:08:45 +00:00
|
|
|
url='http://qt-project.org'
|
2018-01-04 00:54:27 +00:00
|
|
|
license=(LGPL)
|
2018-08-26 16:27:21 +00:00
|
|
|
depends=(qt5-tools qt5-quickcontrols qt5-quickcontrols2 qt5-webengine clang=$_clangver qbs clazy)
|
2018-09-20 13:43:24 +00:00
|
|
|
makedepends=(git mesa llvm python)
|
2018-01-04 00:54:27 +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')
|
2018-02-13 14:46:50 +00:00
|
|
|
source=("http://download.qt.io/official_releases/qtcreator/${pkgver%.*}/$pkgver/qt-creator-opensource-src-$pkgver.tar.xz"
|
2018-10-24 12:18:29 +00:00
|
|
|
qtcreator-clang-plugins.patch)
|
2018-12-10 13:25:32 +00:00
|
|
|
sha256sums=('aec7b4595e17f5536eb2eef4331057f2d0fa4ba0a46f4968cc06959a1d589b43'
|
2018-10-24 12:18:29 +00:00
|
|
|
'6f19fc9d83964a5460d224b3d44ce580553847960181fe0364e2ce26e1efd2e6')
|
2013-03-30 20:08:45 +00:00
|
|
|
|
2013-12-02 04:18:42 +00:00
|
|
|
prepare() {
|
2018-01-04 00:54:27 +00:00
|
|
|
mkdir -p build
|
2017-05-25 01:51:21 +00:00
|
|
|
|
2018-07-06 14:37:55 +00:00
|
|
|
cd qt-creator-opensource-src-$pkgver
|
2017-05-25 01:51:21 +00:00
|
|
|
# fix hardcoded libexec path
|
2018-07-06 14:37:55 +00:00
|
|
|
sed -e 's|libexec\/qtcreator|lib\/qtcreator|g' -i qtcreator.pri
|
2017-05-25 01:51:21 +00:00
|
|
|
# use system qbs
|
2018-07-06 14:37:55 +00:00
|
|
|
rm -r src/shared/qbs
|
2018-08-26 16:27:21 +00:00
|
|
|
# Load analyzer plugins on demand, since upstream clang doesn't link to all plugins
|
|
|
|
# see http://code.qt.io/cgit/clang/clang.git/commit/?id=7f349701d3ea0c47be3a43e265699dddd3fd55cf
|
|
|
|
# and https://bugs.archlinux.org/task/59492
|
|
|
|
patch -p1 -i ../qtcreator-clang-plugins.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 \
|
2018-07-06 14:37:55 +00:00
|
|
|
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
|
|
|
|
|
2018-01-04 00:54:27 +00:00
|
|
|
make INSTALL_ROOT="$pkgdir/usr/" install
|
|
|
|
make INSTALL_ROOT="$pkgdir/usr/" install_docs
|
2013-03-30 20:08:45 +00:00
|
|
|
|
2018-01-04 00:54:27 +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
|
|
|
}
|