summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6e953f6ca8b665968070fae6fded1794571a41b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: nullgemm <nullgemm@mailbox.org>
pkgname=libexcalibar-git
pkgver=0.0.1
pkgrel=1
pkgdesc="excalibar core (plugins interface)"
arch=('i686' 'x86_64')
url="https://github.com/nullgemm/excalibar"
license=('custom:WTFPL')
makedepends=('git')
depends=('libxcb' 'cairo' 'pango')
source=("git+https://github.com/nullgemm/excalibar.git")
md5sums=('SKIP')

build() {
	cd excalibar/lib
	make
}

package() {
	cd excalibar/lib
	make DESTDIR="$pkgdir" install
	install -D -m644 ../license.md "${pkgdir}/usr/share/licenses/${pkgname}/WTFPL"
}