diff options
Diffstat (limited to 'testing/kdevelop/PKGBUILD')
-rw-r--r-- | testing/kdevelop/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/kdevelop/PKGBUILD b/testing/kdevelop/PKGBUILD new file mode 100644 index 000000000..22df44824 --- /dev/null +++ b/testing/kdevelop/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 166547 2012-09-10 13:10:09Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Giovanni Scafora <giovanni@archlinux.org> + +pkgname=kdevelop +pkgver=4.3.90 +pkgrel=1 +pkgdesc="A C/C++ development environment for KDE" +arch=('i686' 'x86_64') +url="http://www.kdevelop.org/" +license=('GPL') +depends=('kdebase-workspace' 'kdevplatform' 'kdesdk-okteta' 'kdebase-katepart') +makedepends=('cmake' 'automoc4') +install="${pkgname}.install" +source=("http://download.kde.org/unstable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") +sha1sums=('18ed2dccdeef8abe41c135cd3038038790b4e50a') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} |