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>
|
|
|
|
# - patch to upgrade included botan version so it builds on ARM
|
|
|
|
|
|
|
|
pkgname=qtcreator
|
2014-03-08 18:59:07 +00:00
|
|
|
pkgver=3.0.1.git
|
|
|
|
_pkgver=3.0
|
|
|
|
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')
|
2013-12-18 22:41:16 +00:00
|
|
|
depends=('qt5-quick1' 'qt5-tools' 'qt5-quickcontrols')
|
2013-03-30 20:08:45 +00:00
|
|
|
makedepends=('git')
|
|
|
|
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'
|
|
|
|
'valgrind: for analyze support')
|
|
|
|
install=qtcreator.install
|
2014-03-08 18:59:07 +00:00
|
|
|
source=("git://gitorious.org/qt-creator/qt-creator.git#branch=${_pkgver}"
|
2013-12-02 04:18:42 +00:00
|
|
|
"git://gitorious.org/qt-labs/qbs.git"
|
2013-03-30 20:08:45 +00:00
|
|
|
'qtcreator.desktop'
|
|
|
|
'botan-upgrade.patch')
|
2013-12-02 04:18:42 +00:00
|
|
|
md5sums=('SKIP'
|
|
|
|
'SKIP'
|
2014-02-06 03:59:14 +00:00
|
|
|
'50880836fd62ccd87550940feb995f06'
|
2013-03-30 20:08:45 +00:00
|
|
|
'7d71e58bdb7a918adb779b0e527fbba5')
|
|
|
|
|
2013-12-02 04:18:42 +00:00
|
|
|
prepare() {
|
|
|
|
cd qt-creator
|
|
|
|
git submodule init
|
|
|
|
git config submodule.qbs.url $srcdir/qbs
|
|
|
|
git submodule update
|
|
|
|
patch -p1 -i "${srcdir}"/botan-upgrade.patch
|
|
|
|
}
|
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
|
|
|
|
|
2013-12-02 04:18:42 +00:00
|
|
|
qmake ../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
|
|
|
|
|
|
|
|
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
|
|
|
}
|