64 lines
1.7 KiB
Bash
64 lines
1.7 KiB
Bash
# Maintainer: Adriaan Zonnenberg <amz@adriaan.xyz>
|
|
# Contributor: Florian Bruhin (The-Compiler) <archlinux.org@the-compiler.org>
|
|
# Contributor: Daniel Micay <danielmicay@gmail.com>
|
|
# Contributor: Sébastien Luttringer
|
|
# Contributor: Angel Velasquez <angvp@archlinux.org>
|
|
# Contributor: tobias <tobias@archlinux.org>
|
|
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
|
|
|
|
_pkgname=rxvt-unicode
|
|
pkgname=rxvt-unicode-cvs
|
|
pkgver=20170518
|
|
pkgrel=1
|
|
pkgdesc='A unicode enabled rxvt-clone terminal emulator (urxvt) - latest cvs revision'
|
|
arch=('i686' 'x86_64')
|
|
url='http://software.schmorp.de/pkg/rxvt-unicode.html'
|
|
license=('GPL')
|
|
depends=('libxft' 'perl' 'startup-notification' 'rxvt-unicode-terminfo')
|
|
makedepends=('cvs')
|
|
optdepends=('gtk2-perl: to use the urxvt-tabbed')
|
|
|
|
prepare() {
|
|
cd ${srcdir}
|
|
cvs -z3 -d :pserver:anonymous@cvs.schmorp.de/schmorpforge co ${_pkgname}
|
|
}
|
|
|
|
build() {
|
|
cd ${srcdir}/${_pkgname}
|
|
patch -p0 < ../../urxvt-sgr.patch
|
|
# we disable smart-resize (FS#34807)
|
|
# do not specify --with-terminfo (FS#46424)
|
|
./configure \
|
|
--prefix=/opt/urxvt \
|
|
--enable-256-color \
|
|
--enable-combining \
|
|
--enable-fading \
|
|
--enable-font-styles \
|
|
--enable-iso14755 \
|
|
--enable-keepscrolling \
|
|
--enable-lastlog \
|
|
--enable-mousewheel \
|
|
--enable-next-scroll \
|
|
--enable-perl \
|
|
--enable-pointer-blank \
|
|
--enable-rxvt-scroll \
|
|
--enable-selectionscrolling \
|
|
--enable-slipwheeling \
|
|
--disable-smart-resize \
|
|
--enable-startup-notification \
|
|
--enable-transparency \
|
|
--enable-unicode3 \
|
|
--enable-utmp \
|
|
--enable-wtmp \
|
|
--enable-xft \
|
|
--enable-xim \
|
|
--enable-xterm-scroll \
|
|
--disable-frills
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $_pkgname
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
}
|