blob: a447046d90bc40624df2c0c55c7759357b709d07 (
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
|
# Description: rxvt fork with unicode and xft support
# URL: http://software.schmorp.de/#rxvt-unicode
# Maintainer: Erich Eckner, crux at eckner dot net
# Contributor: Fredrik Rinnestam, fredrik at crux dot nu
# Depends on: xorg-libxft, xorg-libxpm, perl
name=rxvt-unicode
version=9.22
release=1
source=(http://dist.schmorp.de/$name/Attic/$name-$version.tar.bz2 secondaryWheel.patch)
build() {
cd $name-$version
patch -p1 -i ../secondaryWheel.patch
./configure --prefix=/usr \
--enable-utmp \
--enable-wtmp \
--enable-transparency \
--enable-fading \
--enable-mousewheel \
--enable-256-color \
--enable-xft \
--enable-font-styles \
--enable-unicode3
make
mkdir -p $PKG/usr/share/terminfo
make TERMINFO=$PKG/usr/share/terminfo DESTDIR=$PKG install
}
|