desktop/kdevelop/PKGBUILD

44 lines
1.2 KiB
Bash
Raw Normal View History

2016-01-27 04:17:03 +08:00
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/kdevelop
source ../kdeapps.conf
pkgname=kdevelop
pkgver=$_kdevver
2017-03-05 22:19:11 +08:00
pkgrel=1
pkgdesc='A C/C++ development environment for KDE'
arch=(x86_64)
url='http://www.kdevelop.org/'
license=(GPL)
option=('debug')
depends=(kdevplatform clang libksysguard)
makedepends=(extra-cmake-modules kdoctools kdevelop-pg-qt clang llvm qt5-tools plasma-framework krunner okteta)
optdepends=('konsole: embedded terminal'
'git: Git support'
'subversion: SVN support'
'cvs: CVS support'
'gdb: GNU Debugger support'
'qt5-doc: Qt documentation integration'
'cmake: cmake integration'
'qt5-tools: qthelp plugin'
'okteta: hex editor integration'
'plasma-framework: for the plasma addons')
install="$pkgname.install"
2017-03-05 22:19:11 +08:00
source=("http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.asc})
sha256sums=("`grep ${pkgname}-${pkgver}.tar.xz ../kdevelop.checksums | cut -d " " -f1`"
'SKIP')
validpgpkeys=('329FD02C5AA48FCC77A4BBF0AC44AC6DB29779E6')
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
}
package() {
cd ${srcdir}/build
make DESTDIR=${pkgdir} install
}