rxvt-unicode-cvs with sgr patch
This commit is contained in:
parent
b82dd2c5b1
commit
6a8c41d05c
6 changed files with 67 additions and 121 deletions
64
rxvt-unicode-cvs/PKGBUILD
Normal file
64
rxvt-unicode-cvs/PKGBUILD
Normal file
|
@ -0,0 +1,64 @@
|
|||
# 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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue