summaryrefslogtreecommitdiff
path: root/repo/liblangtag/liblangtag.xibuild
blob: 9e7b01f883309f93ee6d5f2adc5377f7533548f7 (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="liblangtag"
DESC="Interface library to access/deal with tags for identifying languages"

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

PKG_VER=0.6.3
SOURCE="https://bitbucket.org/tagoh/liblangtag/downloads/liblangtag-$PKG_VER.tar.bz2"

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

check() {
	make -k check
}

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