summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d5006adbd2450be263c9a63a09ab8a8ffef174de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Contributor: Manuel Unglaub <m.unglaub@gmail.com>
# Maintainer: SanskritFritz (gmail)

pkgname=silence
pkgver=0.2.1
pkgrel=2
pkgdesc="An information management tool."
arch=('i686' 'x86_64')
url="http://silence.sekalura.net"
license=('GPL2 only')
depends=('kdebase-runtime')
makedepends=('cmake')
source=("http://silence.sekalura.net/$pkgname-$pkgver.tar.gz")
md5sums=('b69d906abf321e29c3b8957e4fd4b9cb')

build() {
  cd "$pkgname"

  cmake -DCMAKE_INSTALL_PREFIX=/usr
  make
}

package() {
  cd "$pkgname"
  make DESTDIR="$pkgdir/" install

}