mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 03:54:36 +08:00
25 lines
758 B
Bash
25 lines
758 B
Bash
|
# $Id: PKGBUILD 58983 2009-11-18 18:40:59Z ibiru $
|
||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=vte
|
||
|
pkgver=0.22.5
|
||
|
pkgrel=1
|
||
|
pkgdesc="Virtual Terminal Emulator library"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('LGPL')
|
||
|
depends=('gtk2>=2.18.3')
|
||
|
options=('!libtool')
|
||
|
makedepends=('pygtk>=2.16.0' 'pkgconfig' 'intltool')
|
||
|
url="http://www.gnome.org"
|
||
|
source=(http://ftp.gnome.org/pub/GNOME/sources/vte/0.22/vte-${pkgver}.tar.bz2)
|
||
|
sha256sums=('c0987126347e12daf2bf9b772b6c58ddf8a922f5b8341470ed578d9fcea7b2f6')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
./configure --prefix=/usr --sysconfdir=/etc \
|
||
|
--libexecdir=/usr/lib/vte \
|
||
|
--localstatedir=/var --disable-static || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="${pkgdir}" install || return 1
|
||
|
}
|