mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 05:47:13 +02:00
testing/rxvt-unicode: new aport
rxvt fork with improved unicode support http://software.schmorp.de/pkg/rxvt-unicode.html
This commit is contained in:
parent
e0f5ccc125
commit
c386d3f482
42
testing/rxvt-unicode/APKBUILD
Normal file
42
testing/rxvt-unicode/APKBUILD
Normal 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"
|
Loading…
Reference in New Issue
Block a user