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>
|
2014-08-20 02:22:10 +00:00
|
|
|
# - depend on botan, configure with USE_SYSTEM_BOTAN=1
|
2013-03-30 20:08:45 +00:00
|
|
|
|
|
|
|
pkgname=qtcreator
|
2014-08-19 20:08:21 +00:00
|
|
|
pkgver=3.2.0
|
|
|
|
_pkgver=v3.2.0
|
2014-09-03 18:51:00 +00:00
|
|
|
pkgrel=2
|
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')
|
2014-08-20 02:22:10 +00:00
|
|
|
depends=('qt5-quick1' 'qt5-tools' 'qt5-quickcontrols' 'botan')
|
2014-03-28 18:26:12 +00:00
|
|
|
makedepends=('git' 'clang')
|
2013-03-30 20:08:45 +00:00
|
|
|
options=('docs')
|
|
|
|
optdepends=('qt5-doc: for the integrated Qt documentation'
|
|
|
|
'gdb: for the debugger'
|
|
|
|
'cmake: for cmake project support'
|
|
|
|
'openssh-askpass: for ssh support'
|
|
|
|
'git: for git support'
|
|
|
|
'mercurial: for mercurial support'
|
|
|
|
'bzr: for bazaar support'
|
2014-03-28 18:26:12 +00:00
|
|
|
'clang: Clang code model'
|
2013-03-30 20:08:45 +00:00
|
|
|
'valgrind: for analyze support')
|
|
|
|
install=qtcreator.install
|
2014-03-13 21:01:48 +00:00
|
|
|
source=("git://gitorious.org/qt-creator/qt-creator.git#tag=${_pkgver}"
|
2013-12-02 04:18:42 +00:00
|
|
|
"git://gitorious.org/qt-labs/qbs.git"
|
2014-09-03 18:51:00 +00:00
|
|
|
"remote-qml.patch::https://qt.gitorious.org/qt-creator/qt-creator/commit/e8305e3ed2349b95c7311c296febc6d75f1a0c2a.patch"
|
2014-08-20 02:22:10 +00:00
|
|
|
'qtcreator.desktop')
|
2013-12-02 04:18:42 +00:00
|
|
|
md5sums=('SKIP'
|
|
|
|
'SKIP'
|
2014-09-03 18:51:00 +00:00
|
|
|
'648a54f4cf1bde2f62145da5e6c6b88e'
|
2014-08-20 02:22:10 +00:00
|
|
|
'50880836fd62ccd87550940feb995f06')
|
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
|
2014-09-03 18:51:00 +00:00
|
|
|
|
|
|
|
patch -Np1 < $srcdir/remote-qml.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
|
|
|
|
|
2014-08-20 02:22:10 +00:00
|
|
|
LLVM_INSTALL_DIR=/usr qmake -r ../qt-creator/qtcreator.pro USE_SYSTEM_BOTAN=1
|
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
|
2013-12-02 04:18:42 +00:00
|
|
|
install -Dm644 ${srcdir}/qt-creator/LGPL_EXCEPTION.TXT ${pkgdir}/usr/share/licenses/qtcreator/LGPL_EXCEPTION.TXT
|
2013-03-30 20:08:45 +00:00
|
|
|
}
|