blob: 62b19db9af172e22f0ac2d1311af03f56cb1036e (
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
28
29
|
# Maintainer: willemw <willemw12@gmail.com>
# Contibutor: David Brazdil <db538@cam.ac.uk>
pkgname=volnoti
pkgver=0.1
pkgrel=9
pkgdesc='Lightweight volume notification'
url=https://github.com/davidbrazdil/volnoti
arch=(x86_64)
license=(GPL-3.0-or-later)
depends=(dbus-glib gdk-pixbuf2 gtk2 librsvg)
makedepends=(git glib2-devel)
source=("$pkgname::git+$url.git#commit=958415b")
sha256sums=('c77a014906277de50d9839ca8127cce96c73c7adabbdc05de4fbcc688690440f')
build() {
cd $pkgname
#./prepare.sh
autoreconf --force --install
autoupdate --force
./configure --prefix=/usr
make
}
package() {
make -C $pkgname DESTDIR="$pkgdir" install
}
|