desktop/sentinella/PKGBUILD
2012-10-25 01:03:34 +00:00

31 lines
864 B
Bash

#
# Chakra Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas[at]chakra-project[dot]org>
pkgname=sentinella
pkgver=0.9.1
pkgrel=1
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=('i686' 'x86_64')
depends=('oxygen-icons' 'libsysactivity' 'kdebase-workspace')
makedepends=('cmake' 'hicolor-icon-theme' 'automoc4')
install=sentinella.install
categories=('utils')
source=("http://sourceforge.net/projects/${pkgname}/files/0.9.x/sentinella-${pkgver}.tar.gz")
md5sums=('5ce329ff5edf9066fe02ecd26b907feb')
build() {
cd ${srcdir}/sentinella-${pkgver}
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=release
make
}
package() {
cd ${srcdir}/sentinella-${pkgver}
make DESTDIR=${pkgdir} install
}