22 lines
592 B
Plaintext
22 lines
592 B
Plaintext
# Description: Vte GTK+ 3 için bir terminal emülatörü widget'ı uygulayan bir kitaplıktır (libvte)
|
||
# URL: http://developer.gnome.org/arch/gnome/widgets/vte.html
|
||
# Packager: milisarge
|
||
# Depends on: gtk3 perl-xml-parser python-gtk gobject-introspection pcre2
|
||
|
||
name=vte3
|
||
version=0.49.1
|
||
release=1
|
||
_name=vte
|
||
source=(http://ftp.gnome.org/pub/gnome/sources/${_name}/${version%.*}/${_name}-$version.tar.xz)
|
||
|
||
build() {
|
||
cd ${_name}-$version
|
||
./configure --prefix=/usr\
|
||
--libexecdir=/usr/lib/$name \
|
||
--enable-introspection \
|
||
--with-xft2 \
|
||
--with-pangox
|
||
make
|
||
make DESTDIR=$PKG install
|
||
}
|