Add rxvt-unicode-sgr; proper mouse reporting
This commit is contained in:
parent
6b4a64a07a
commit
d1022352c0
5 changed files with 208 additions and 0 deletions
91
rxvt-unicode-sgr/PKGBUILD
Normal file
91
rxvt-unicode-sgr/PKGBUILD
Normal file
|
@ -0,0 +1,91 @@
|
|||
# $Id$
|
||||
# Maintainer: Sébastien Luttringer
|
||||
# Contributor: Angel Velasquez <angvp@archlinux.org>
|
||||
# Contributor: tobias <tobias@archlinux.org>
|
||||
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
|
||||
|
||||
pkgbase=rxvt-unicode
|
||||
pkgname=('rxvt-unicode-sgr' 'rxvt-unicode-terminfo')
|
||||
pkgver=9.22
|
||||
pkgrel=2
|
||||
arch=('i686' 'x86_64')
|
||||
url='http://software.schmorp.de/pkg/rxvt-unicode.html'
|
||||
license=('GPL')
|
||||
makedepends=('libxft' 'perl' 'startup-notification')
|
||||
source=(
|
||||
"http://dist.schmorp.de/rxvt-unicode/$pkgname-$pkgver.tar.bz2"
|
||||
'urxvt.desktop'
|
||||
'urxvtc.desktop'
|
||||
'urxvt-tabbed.desktop'
|
||||
'urxvt-sgr.patch'
|
||||
)
|
||||
md5sums=('93782dec27494eb079467dacf6e48185'
|
||||
'fec94dc986fa37ec380079d81de3e0b2'
|
||||
'fac55f0a8404c86dad3e702146762332'
|
||||
'8a5599197568c63720e282b9722a7990'
|
||||
'f8325b0a33999db4d5d1eeac4f320156')
|
||||
|
||||
build() {
|
||||
cd $pkgname-$pkgver
|
||||
patch -p0 < ../urxvt-sgr.patch
|
||||
# we disable smart-resize (FS#34807)
|
||||
# do not specify --with-terminfo (FS#46424)
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--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-pixbuf \
|
||||
--disable-frills
|
||||
make
|
||||
}
|
||||
|
||||
package_rxvt-unicode() {
|
||||
pkgdesc='A unicode enabled rxvt-clone terminal emulator (urxvt)'
|
||||
provides='rxvt-unicode'
|
||||
conflicts='rxvt-unicode'
|
||||
depends=('rxvt-unicode-terminfo' 'libxft' 'perl' 'startup-notification')
|
||||
optdepends=('gtk2-perl: to use the urxvt-tabbed')
|
||||
|
||||
# install freedesktop menu
|
||||
for _f in urxvt urxvtc urxvt-tabbed; do
|
||||
install -Dm644 $_f.desktop "$pkgdir/usr/share/applications/$_f.desktop"
|
||||
done
|
||||
cd $pkgname-$pkgver
|
||||
# workaround terminfo installation
|
||||
export TERMINFO="$srcdir/terminfo"
|
||||
install -d "$TERMINFO"
|
||||
make DESTDIR="$pkgdir" install
|
||||
# install the tabbing wrapper ( requires gtk2-perl! )
|
||||
sed -i 's/\"rxvt\"/"urxvt"/' doc/rxvt-tabbed
|
||||
install -Dm 755 doc/rxvt-tabbed "$pkgdir/usr/bin/urxvt-tabbed"
|
||||
}
|
||||
|
||||
package_rxvt-unicode-terminfo() {
|
||||
pkgdesc='Terminfo files for urxvt'
|
||||
conflict=('rxvt-unicode<=9.18-6')
|
||||
install -dm 755 "$pkgdir/usr/share/"
|
||||
mv terminfo "$pkgdir/usr/share/"
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
Loading…
Add table
Add a link
Reference in a new issue