desktop/sentinella/PKGBUILD

32 lines
869 B
Bash

#
# Chakra Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas[at]chakra-project[dot]org>
pkgname=sentinella
pkgver=0.9.2
pkgrel=2
pkgdesc="Desktop application that watches your system activity and, in consequence, takes an action that you've chosen."
url="http://sentinella.sourceforge.net/"
license=('GPL')
arch=('x86_64')
depends=('libsysactivity' 'kde-runtime' 'libksysguard4')
makedepends=('cmake' 'hicolor-icon-theme' 'automoc4' 'kde-workspace')
install=sentinella.install
categories=('utils')
source=("http://sourceforge.net/projects/${pkgname}/files/0.9.x/sentinella-${pkgver}.tar.xz")
md5sums=('c64eb476dd58a31b1f3158121256cc50')
build() {
cd ${srcdir}/sentinella-${pkgver}
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
make
}
package() {
cd ${srcdir}/sentinella-${pkgver}
make DESTDIR=${pkgdir} install
}