blob: a65960020160af034fb960e6424843341d401f44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
pkgname=vte3-select-text-git
pkgver=git
pkgrel=1
pkgdesc="Virtual Terminal Emulator widget for use with GTK3"
arch=('i686' 'x86_64')
license=('LGPL')
url="http://www.gnome.org"
options=('!libtool' '!emptydirs')
depends=('gtk3' 'vte-common')
makedepends=('intltool' 'gobject-introspection' 'gtk3' 'gtk-doc' 'gperf')
provides=('vte3')
conflicts=('vte3' 'vte3-select-text')
source=('git://git.gnome.org/vte#branch=vte-0-36'
'expose_select_text.patch')
sha256sums=('SKIP'
'37fc0ecd4939c3b14f36dace31b54507e0f1cf1fc95a07ae079b1997d0481d7e')
pkgver() {
cd vte
git describe | sed 's/-/.r/; s/-/./'
}
prepare() {
cd vte
patch -p1 -i "$srcdir"/expose_select_text.patch
}
build() {
cd vte
./autogen.sh
./configure --prefix=/usr \
--sysconfdir=/etc \
--enable-introspection \
--libexecdir=/usr/lib/vte \
--localstatedir=/var --disable-static
make
}
package() {
cd vte
make DESTDIR="$pkgdir" install
rm "$pkgdir"/usr/lib/vte/gnome-pty-helper
}
|