liblangtag: import as libetonyek's dependency

This commit is contained in:
Jeff Huang 2016-02-18 03:10:50 +00:00
parent f42dd9d3c4
commit d49b7e7cd8

32
liblangtag/PKGBUILD Normal file
View File

@ -0,0 +1,32 @@
# Contribution from Arch:
# Maintainer: AndyRTR <andyrtr@archlinux.org>
pkgname=liblangtag
pkgver=0.5.8
pkgrel=1
pkgdesc="interface library to access/deal with tags for identifying languages"
arch=('i686' 'x86_64')
url="http://tagoh.bitbucket.org/liblangtag/index.html"
license=('LGPL3' 'MPL') # actually MPL2.0
depends=('libxml2' 'glib2')
makedepends=('gobject-introspection')
optdepends=('gobject-introspection-runtime: use with liblangtag-gobject')
source=(https://bitbucket.org/tagoh/liblangtag/downloads/$pkgname-$pkgver.tar.bz2)
md5sums=(aa899eff126216dafe721149fbdb511b)
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr
make
}
check() {
cd "$pkgname-$pkgver"
make -k check
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}