blob: 8fd8028cba1e191e1489767720a40fb060c9ecc9 (
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
|
# Maintainer: Jeandre Le Roux <theblazehen@gmail.com>
# Co-Maintainer: jzbor <zborof at posteo dot de>
pkgname=xmenu
pkgver=4.6.1
pkgrel=3
pkgdesc="A menu utility for X."
arch=(x86_64 i686 aarch64)
url="https://github.com/phillbush/xmenu"
license=(MIT)
depends=(imlib2 libxinerama)
makedepends=(libxft)
provides=("xmenu")
source=("https://github.com/phillbush/$pkgname/archive/v$pkgver.tar.gz")
md5sums=('aaea8969edd02d0af202243bef7988e2')
build() {
cd "$pkgname-$pkgver"
make
}
package () {
cd $pkgname-$pkgver
make PREFIX="$pkgdir/usr" install
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
}
|