blob: 0bf802067f1dd9943a6d7f73c169a63e8b452ecd (
plain)
1 # Description: rxvt fork with unicode and xft support
2 # URL: http://software.schmorp.de/#rxvt-unicode
3 # Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
4 # Depends on: xorg-libxft, xorg-libxpm, perl
5
6 name=rxvt-unicode
7 version=9.22
8 release=1
9 source=(http://dist.schmorp.de/$name/Attic/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13
14 ./configure --prefix=/usr \
15 --enable-utmp \
16 --enable-wtmp \
17 --enable-transparency \
18 --enable-fading \
19 --enable-mousewheel \
20 --enable-256-color \
21 --enable-xft \
22 --enable-font-styles \
23 --enable-unicode3
24
25 make
26
27 mkdir -p $PKG/usr/share/terminfo
28 make TERMINFO=$PKG/usr/share/terminfo DESTDIR=$PKG install
29 }
|