aboutsummaryrefslogtreecommitdiffstats
path: root/testing/rxvt-unicode/APKBUILD
blob: f4a03602cffd4fbf724a680e30d4fcb5580042cd (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
30
31
32
33
34
35
36
37
38
39
40
41
42
# Contributor: Moritz Wilhelmy
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=rxvt-unicode
pkgver=9.11
pkgrel=0
pkgdesc='rxvt fork with improved unicode support'
arch=all
url='http://software.schmorp.de/pkg/rxvt-unicode.html'
license='GPL'
depends=
makedepends="libx11-dev"
source="http://dist.schmorp.de/rxvt-unicode/$pkgname-$pkgver.tar.bz2"

build() {
	cd "$srcdir/$pkgname-$pkgver"
	./configure --prefix=/usr \
		--with-terminfo=/usr/share/terminfo \
		--enable-256-color \
		--enable-font-styles \
		--enable-xim \
		--enable-keepscrolling \
		--enable-selectionscrolling \
		--enable-smart-resize \
		--enable-pixbuf \
		--disable-transparency \
		--disable-utmp \
		--disable-wtmp \
		--disable-lastlog \
		--disable-frills \
		--disable-perl \
		|| return 1
	make
}

package() {
	cd "$srcdir/$pkgname-$pkgver"
	install -d "$pkgdir/usr/share/terminfo"
	export TERMINFO="$pkgdir/usr/share/terminfo"
	make DESTDIR="$pkgdir" install
}

md5sums="1bed5bfeed026e0bfafa0e9e4f62aa37  rxvt-unicode-9.11.tar.bz2"