mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 19:07:15 +08:00
38 lines
761 B
Bash
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
|
|
}
|