2016-01-27 04:17:03 +08:00
|
|
|
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/kdevelop
|
2010-05-29 05:38:34 +08:00
|
|
|
|
|
|
|
pkgname=kdevelop
|
2016-01-27 04:17:03 +08:00
|
|
|
pkgver=4.7.3
|
|
|
|
pkgrel=1
|
2010-05-29 05:38:34 +08:00
|
|
|
pkgdesc="A C/C++ development environment for KDE"
|
2012-11-05 05:33:23 +08:00
|
|
|
arch=('x86_64')
|
2010-05-29 05:38:34 +08:00
|
|
|
url="http://www.kdevelop.org/"
|
|
|
|
license=('GPL')
|
2016-01-27 04:17:03 +08:00
|
|
|
depends=('kde-baseapps-katepart' 'kde-runtime' 'kdevplatform')
|
|
|
|
makedepends=('cmake' 'automoc4' 'docbook-xsl')
|
|
|
|
optdepends=('konsolepart4: embedded terminal'
|
|
|
|
#'oktetapart4: hex editor integration' > enable in kf5 version
|
|
|
|
'git: Git support'
|
|
|
|
'subversion: SVN support'
|
|
|
|
'cvs: Concurrent Versions System support'
|
|
|
|
'gdb: GNU Debugger support'
|
|
|
|
'qt5-doc: Qt documentation integration'
|
|
|
|
'cmake: cmake integration')
|
2012-03-16 22:51:37 +08:00
|
|
|
categories=('programming')
|
2010-05-29 05:38:34 +08:00
|
|
|
install=${pkgname}.install
|
2016-01-27 04:17:03 +08:00
|
|
|
source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
|
|
|
|
sha1sums=('5ebd56ee348d7688eff55ffc6a83018ccf42a4fb')
|
2010-05-29 05:38:34 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${srcdir}
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake ../${pkgname}-${pkgver} \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_SKIP_RPATH=ON
|
2012-03-14 12:19:18 +08:00
|
|
|
make
|
2010-05-29 05:38:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd ${srcdir}/build
|
2012-03-14 12:19:18 +08:00
|
|
|
make DESTDIR=${pkgdir} install
|
2010-05-29 05:38:34 +08:00
|
|
|
}
|