summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 43d7b93234eb3d6cc666650edd49427c6068e719 (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
28
29
# Maintainer: Rysh Glene <thereisnoescape18751 at protonmail dot ch>
# Maintainer: Sibren Vasse <arch at sibrenvasse dot nl>
# Maintainer: MichaƂ Lemke <lemke.michal@gmail.com>

pkgname=dmenu2
pkgver=0.2
pkgrel=1
pkgdesc="Fork of dmenu with many useful patches applied and additional options like screen select, dim or opacity change"
url="https://bitbucket.org/melek/dmenu2"
arch=('i686' 'x86_64')
license=('MIT')
license=('GPL')
depends=('libxinerama' 'libxft')
provides=(dmenu)
conflicts=(dmenu)

source=(https://bitbucket.org/melek/dmenu2/downloads/dmenu2-$pkgver.tar.gz)
md5sums=('bc694c8b9fa3b8f6e7be8046d46e5bc5')

build() {
	cd "$srcdir/$pkgname-$pkgver"
	make
}

package() {
	cd "$srcdir/$pkgname-$pkgver"
	make DESTDIR="$pkgdir" PREFIX=/usr install
	install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}