desktop/kdeadmin-kcron/PKGBUILD
2015-04-05 21:59:02 +00:00

38 lines
761 B
Bash

# Include global configuration
source ../kdeapps.conf
_pkgname="kcron"
pkgname=
arch=('x86_64')
pkgver=${_kdever}
pkgrel=1
url="http://www.kde.org/"
license=('GPL' 'LGPL' 'FDL')
install=kdeadmin.install
pkgdesc="Crontab editor"
depends=("kde-runtime")
makedepends=()
groups=("kdeadmin" "kde" "kde-uninstall")
conflicts=("kdeadmin-kcron")
replaces=("kdeadmin-kcron")
provides=("kdeadmin-kcron")
categories=('system')
options=('docs' '!header' 'debug' 'log')
source=("$_mirror/${_pkgname}-$_kdever.tar.xz")
sha256sums=(`grep ${_pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
}
package() {
cd ${srcdir}/build
make DESTDIR=${pkgdir} install
}