desktop/konsole/PKGBUILD

36 lines
920 B
Bash
Raw Normal View History

2015-02-23 23:08:49 +08:00
#Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/konsole
2015-04-29 19:58:14 +08:00
source ../kdeapps.conf
pkgname=konsole
2015-02-23 23:08:49 +08:00
pkgver=${_kdever}
pkgrel=1
pkgdesc="KDE's terminal emulator"
arch=('x86_64')
2015-02-23 23:08:49 +08:00
url='http://kde.org/applications/system/konsole/'
2015-04-29 19:58:14 +08:00
screenshot=('https://www.kde.org/images/screenshots/konsole.png')
license=('LGPL')
2015-02-23 23:08:49 +08:00
depends=('kdelibs4support' 'knotifyconfig' 'kpty')
makedepends=('extra-cmake-modules' 'kdoctools' 'python3')
groups=('kde')
conflicts=('kde-baseapps-konsole<4.14.3-2')
2015-02-23 23:08:49 +08:00
replaces=('kde-baseapps-konsole')
source=("$_mirror/${pkgname}-$_kdever.tar.xz"{,.sig})
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../kdeapps.sums | cut -d " " -f1`
'SKIP')
validpgpkeys=(${Avalidpgpkeys})
prepare() {
mkdir -p build
}
build() {
cd build
2015-04-29 19:58:14 +08:00
cmake_kf5 ../${pkgname}-${pkgver}
make
}
package() {
2015-04-29 19:58:14 +08:00
cd build
make DESTDIR="${pkgdir}" install
}