blob: 359f07d103245fce40d7f38aca73b70b0dac8c8c (
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: Jeandre Le Roux <theblazehen@gmail.com>
pkgname=xmenu
pkgver=4.5.4
pkgrel=1
pkgdesc="A menu utility for X."
arch=('any')
url="https://github.com/phillbush/xmenu"
license=("Public domain")
depends=("imlib2")
provides=("xmenu")
source=("https://github.com/phillbush/$pkgname/archive/v$pkgver.tar.gz")
md5sums=("85e7159c013d44f9a61df6b54a43ebba")
build() {
cd "$pkgname-$pkgver"
make
}
package () {
cd $pkgname-$pkgver
make PREFIX="$pkgdir/usr" install
}
|