core/kdeadmin-kcron/PKGBUILD

38 lines
751 B
Bash
Raw Normal View History

2013-12-18 02:36:04 +08:00
# Include global configuration
source ../kdeapps.conf
2013-06-26 03:47:13 +08:00
_pkgname="kcron"
pkgname=
2013-06-26 03:47:13 +08:00
arch=('x86_64')
pkgver=${_kdever}
2014-02-01 19:24:18 +08:00
pkgrel=1
2013-06-26 03:47:13 +08:00
url="http://www.kde.org/"
license=('GPL' 'LGPL' 'FDL')
2013-06-26 03:47:13 +08:00
install=kdeadmin.install
pkgdesc="Crontab editor"
depends=("kde-runtime")
makedepends=()
groups=("kdeadmin" "kde" "kde-uninstall")
conflicts=("kdeadmin-kcron")
replaces=("kdeadmin-kcron")
provides=("kdeadmin-kcron")
2013-06-26 03:47:13 +08:00
categories=('system')
options=('docs' '!header' 'debug' 'log')
2013-06-26 03:47:13 +08:00
source=("$_mirror/${_pkgname}-$_kdever.tar.xz")
2014-01-11 20:59:04 +08:00
sha256sums=(`grep ${_pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
2013-06-26 03:47:13 +08:00
prepare() {
mkdir -p build
}
2013-06-26 03:47:13 +08:00
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
2013-06-26 03:47:13 +08:00
}
package() {
cd build
make DESTDIR=${pkgdir} install
2013-06-26 03:47:13 +08:00
}