summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 069d336ffc2821d456ad20d50a3dead50968d510 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Maintainer: Max Bruckner
pkgname=lampe
pkgver=1.0.0
pkgrel=1
pkgdesc="Interactive bash-script to control your Philips Hue lights."
arch=("any")
url="https://github.com/poinck/lampe"
license=('custom')
depends=( 'curl' 'bc' 'zenity' )
source=( "git+https://github.com/poinck/${pkgname}#tag=$pkgver"
)
md5sums=( SKIP )

package() {
	cd "$srcdir/$pkgname"
	make DESTDIR="$pkgdir" install
	install -d -m 755 "$pkgdir/usr/share/licenses/lampe"
	install -m 644 LICENSE "$pkgdir/usr/share/licenses/lampe/CC0"
}