desktop/kdevelop/PKGBUILD

32 lines
800 B
Bash
Raw Normal View History

2013-05-31 19:01:34 +08:00
#maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=kdevelop
2014-09-14 08:56:17 +08:00
pkgver=4.7.0
pkgrel=2
pkgdesc="A C/C++ development environment for KDE"
2012-11-05 05:33:23 +08:00
arch=('x86_64')
url="http://www.kdevelop.org/"
license=('GPL')
depends=('kde-baseapps-katepart' 'kde-runtime' 'kdevplatform' 'kdesdk-okteta')
makedepends=('cmake' 'automoc4' 'perl' 'docbook-xsl')
categories=('programming')
install=${pkgname}.install
2013-11-01 07:54:42 +08:00
source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
2014-09-14 08:56:17 +08:00
md5sums=('0912f881cb1219450aeb155494846bbd')
build() {
cd ${srcdir}
mkdir build
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=ON
make
}
package() {
cd ${srcdir}/build
make DESTDIR=${pkgdir} install
}