blob: a717d90e3b387f754dc9324fcdc230d11bde49be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
NAME="gtksourceview"
DESC="A text widget adding syntax highlighting and more to GNOME"
MAKEDEPS="gtk3 libxml2 gobject-introspection automake autoconf libtool gtk2"
MAJ=3
PKG_VER=24.11
SOURCE="https://download.gnome.org/sources/gtksourceview/$MAJ.${PKG_VER%.*}/gtksourceview-$MAJ.$PKG_VER.tar.xz"
build() {
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static
make
}
package() {
make DESTDIR="$PKG_DEST" install
}
|