desktop/sentinella/PKGBUILD

32 lines
854 B
Bash
Raw Normal View History

2010-12-11 12:34:33 +08:00
#
# Chakra Packages for Chakra, part of chakra-project.org
#
2012-10-25 09:03:34 +08:00
# maintainer abveritas[at]chakra-project[dot]org>
2010-12-11 12:34:33 +08:00
pkgname=sentinella
2013-10-15 16:49:25 +08:00
pkgver=0.9.2
pkgrel=1
2010-12-11 12:34:33 +08:00
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')
2013-10-15 16:49:25 +08:00
arch=('x86_64')
depends=('oxygen-icons' 'libsysactivity' 'kde-workspace')
2010-12-11 12:34:33 +08:00
makedepends=('cmake' 'hicolor-icon-theme' 'automoc4')
2012-10-25 09:03:34 +08:00
install=sentinella.install
categories=('utils')
2013-10-15 16:49:25 +08:00
source=("http://sourceforge.net/projects/${pkgname}/files/0.9.x/sentinella-${pkgver}.tar.xz")
md5sums=('c64eb476dd58a31b1f3158121256cc50')
2010-12-11 12:34:33 +08:00
build() {
cd ${srcdir}/sentinella-${pkgver}
2010-12-11 12:34:33 +08:00
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=release
make
2012-10-25 09:03:34 +08:00
}
package() {
cd ${srcdir}/sentinella-${pkgver}
2010-12-11 12:34:33 +08:00
make DESTDIR=${pkgdir} install
}
2013-10-15 16:49:25 +08:00