diff options
Diffstat (limited to 'manualPorts/rxvt-unicode/Pkgfile')
-rw-r--r-- | manualPorts/rxvt-unicode/Pkgfile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/manualPorts/rxvt-unicode/Pkgfile b/manualPorts/rxvt-unicode/Pkgfile new file mode 100644 index 0000000..a447046 --- /dev/null +++ b/manualPorts/rxvt-unicode/Pkgfile @@ -0,0 +1,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 +} |