mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
69 lines
2.4 KiB
Bash
69 lines
2.4 KiB
Bash
# $Id: PKGBUILD 86795 2013-03-22 10:46:14Z svenstaro $
|
|
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
# Contributor: Imanol Celaya <ornitorrincos@archlinux-es.org>
|
|
# 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>
|
|
# - patch distributed botan version for ARM
|
|
# - drop valgrind optdepend
|
|
|
|
buildarch=12
|
|
|
|
pkgname=qtcreator
|
|
pkgver=4.6.0
|
|
_clangver=6.0.0
|
|
pkgrel=1
|
|
pkgdesc='Lightweight, cross-platform integrated development environment'
|
|
arch=(x86_64)
|
|
url='http://qt-project.org'
|
|
license=(LGPL)
|
|
depends=(qt5-tools qt5-quickcontrols qt5-quickcontrols2 qt5-webengine clang=$_clangver qbs)
|
|
makedepends=(git mesa llvm)
|
|
options=(docs)
|
|
optdepends=('qt5-doc: integrated Qt documentation'
|
|
'qt5-examples: welcome page examples'
|
|
'qt5-translations: for other languages'
|
|
'gdb: debugger'
|
|
'cmake: cmake project support'
|
|
'x11-ssh-askpass: ssh support'
|
|
'git: git support'
|
|
'mercurial: mercurial support'
|
|
'bzr: bazaar support')
|
|
source=("http://download.qt.io/official_releases/qtcreator/${pkgver%.*}/$pkgver/qt-creator-opensource-src-$pkgver.tar.xz"
|
|
'0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch')
|
|
sha256sums=('36e6a9146fbd07f045ea19301176c66f8234afd42bae0a7a17c91e1832fc4882'
|
|
'56e6876f41ee8909ee197f7ab5a2bb18ad5a7fe26ce490a48cdf062fa199ffc6')
|
|
|
|
prepare() {
|
|
mkdir -p 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
|
|
|
|
cd qt-creator-opensource-src-${pkgver}
|
|
git apply ../0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
|
|
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
|
|
make
|
|
make docs
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
|
|
make INSTALL_ROOT="$pkgdir/usr/" install
|
|
make INSTALL_ROOT="$pkgdir/usr/" install_docs
|
|
|
|
install -Dm644 "$srcdir"/qt-creator-opensource-src-$pkgver/LICENSE.GPL3-EXCEPT "$pkgdir"/usr/share/licenses/qtcreator/LICENSE.GPL3-EXCEPT
|
|
}
|