summaryrefslogtreecommitdiff
path: root/skip/liblangtag/liblangtag.xibuild
blob: 48bec7be85c4a80bb1500dd58afe465bf756577e (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
#!/bin/sh

NAME="liblangtag"
DESC="Interface library to access/deal with tags for identifying languages"

MAKEDEPS="glib gobject-introspection libtool libxml2 gtk-doc"

SOURCE="http://bitbucket.org/tagoh/liblangtag.git"

prepare () {
    autoreconf -vif
}

build() {
	./configure --prefix=/usr
	make
}

check() {
	make -k check
}

package() {
	make DESTDIR="$PKG_DEST" install
}