4c0305a2e9
CRUX System Team:reiserfsprogs: util-linux UNMAINTAINED:librsvg: gdk-pixbuf gobject-introspection Jose V Beneyto:gftp: openssl readline Jose V Beneyto:imlib2: libpng Jose V Beneyto:libcroco: libxml2 Jose V Beneyto:libgd: libpng Jose V Beneyto:libwnck-gtk3: intltool Jose V Beneyto:libwnck: intltool Jose V Beneyto:pycairo: python Jose V Beneyto:pygobject: python Jose V Beneyto:qt4: libpng Jose V Beneyto:startup-notification: xorg-libsm xorg-libx11 Jose V Beneyto:subversion: apr expat sqlite3 Jose V Beneyto:vorbis-tools: libogg Jose V Beneyto:vte-gtk3: intltool p5-xml-parser xorg-libxdamage Jose V Beneyto:vte: intltool p5-xml-parser Jose V Beneyto:xchat: openssl perl
31 lines
813 B
Plaintext
31 lines
813 B
Plaintext
# Description: Virtual Terminal Emulator
|
|
# URL: http://developer.gnome.org/arch/gnome/widgets/vte.html
|
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
|
# Packager: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: gtk xorg-libxdamage
|
|
|
|
name=vte
|
|
version=0.28.2
|
|
release=2
|
|
source=(ftp://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.xz \
|
|
$name-metamask.patch)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
patch -R -p1 -i $SRC/$name-metamask.patch
|
|
./configure --prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--disable-static \
|
|
--disable-debugging \
|
|
--disable-python \
|
|
--disable-gtk-doc \
|
|
--with-xft2 \
|
|
--with-pangox
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share/{gtk-doc,locale}
|
|
}
|