mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-24 01:42:13 +08:00
27 lines
766 B
Bash
27 lines
766 B
Bash
pkgname=vte
|
|
pkgver=0.28.2
|
|
pkgrel=1
|
|
pkgdesc="Virtual Terminal Emulator library"
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
depends=('gtk2>=2.22.0')
|
|
options=('!libtool')
|
|
makedepends=('pygtk>=2.22.0' 'intltool' 'gobject-introspection')
|
|
url="http://www.gnome.org"
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/vte/${pkgver%.*}/vte-${pkgver}.tar.xz)
|
|
sha256sums=('86cf0b81aa023fa93ed415653d51c96767f20b2d7334c893caba71e42654b0ae')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
|
|
--libexecdir=/usr/lib/vte \
|
|
--localstatedir=/var --disable-static \
|
|
--enable-introspection --with-gtk=2.0 --disable-gnome-pty-helper
|
|
make
|
|
}
|
|
|
|
package(){
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|