blob: 2f102dd0ec535b734448472240d3a6eba4319a95 (
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
|
# Maintainer: fossdd <fossdd@tutanota.com>
pkgname=lesbar-git
_pkgname=${pkgname%-git}
pkgver=0.4
pkgrel=1
pkgdesc="Markup language for status bars"
arch=('x86_64')
url="https://git.sr.ht/~salmiak/lesbar"
license=('MIT')
depends=('cairo'
'glib2'
'pango'
'libx11')
makedepends=('scdoc')
source=("git+https://git.sr.ht/~salmiak/$_pkgname")
md5sums=("SKIP")
build() {
cd "$_pkgname"
make
}
package() {
cd "$_pkgname"
make DESTDIR="$pkgdir/" PREFIX="usr" install
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|