summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 63758e746b44453a8660c2abe184c921d36f67d8 (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
# Maintainer: Lancia Greggori <lanciagreggori@gmail.com>
pkgname='herbe-git'
pkgver='1.0.0'
pkgrel='1'
pkgdesc='Daemon-less notifications without D-Bus'
arch=('x86_64')
url='https://github.com/dudik/herbe'
license=('MIT')
depends=('libx11' 'libxft')
makedepends=('git')
provides=('herbe')
conflicts=('herbe')
source=("$pkgname-$pkgver::git+$url")
md5sums=('SKIP')

build() {
	cd "$pkgname-$pkgver"
	make clean all
}

package() {
	cd "$pkgname-$pkgver"
	make PREFIX='/usr' DESTDIR="$pkgdir/" install
	install -D -m 644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}