updated on Sun Jan 22 16:00:49 UTC 2012
[aur-mirror.git] / volnoti / PKGBUILD
blobe747988c8c463c26c5f60df85c41b487e8bedf3e
1 # Maintainer: David Brazdil <db538@cam.ac.uk>
2 pkgname=volnoti
3 pkgver=0.1
4 pkgrel=3
5 pkgdesc="Lightweight volume notification"
6 url="https://www.github.com/davidbrazdil/volnoti"
7 arch=('x86_64' 'i686')
8 license=('GPLv3')
9 depends=('dbus-core' 'dbus-glib' 'gtk2' 'gdk-pixbuf2')
10 makedepends=('gcc' 'make' 'pkg-config')
11 conflicts=()
12 replaces=()
13 backup=()
14 # install='foo.install'
15 source=("http://github.com/downloads/davidbrazdil/volnoti/${pkgname}-${pkgver}.tar.gz")
16 md5sums=('f1e7a3730528b8808228415990d398f9')
18 build() {
19   cd "${srcdir}/${pkgname}-${pkgver}"
20   ./configure --prefix=/usr
21   make
24 package() {
25   cd "${srcdir}/${pkgname}-${pkgver}"
26   make DESTDIR="${pkgdir}" install
27   install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
30 # vim:set ts=2 sw=2 et: