testing/rxvt-unicode: new aport

rxvt fork with improved unicode support
http://software.schmorp.de/pkg/rxvt-unicode.html
This commit is contained in:
Natanael Copa 2011-06-10 11:35:53 +00:00
parent e0f5ccc125
commit c386d3f482

View File

@ -0,0 +1,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"