mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-12 00:44:42 +08:00
31 lines
968 B
Bash
31 lines
968 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=sentinella
|
|
pkgver=0.9.0
|
|
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=('libsysactivity' 'kdebase-runtime')
|
|
makedepends=('cmake' 'hicolor-icon-theme' 'kdebase-workspace' 'automoc4')
|
|
install=('sentinella.install')
|
|
source=(http://downloads.sourceforge.net/${pkgname}/sentinella-${pkgver}.tar.gz)
|
|
md5sums=('a6a12e0b702f3b50232ea3e9e29655b6')
|
|
|
|
build() {
|
|
|
|
cd ${srcdir}
|
|
mkdir ${srcdir}/build
|
|
cd ${srcdir}/build
|
|
cmake ${srcdir}/${pkgname}-${pkgver} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
package() {
|
|
cd ${srcdir}/build
|
|
make DESTDIR=${pkgdir} install
|
|
} |