updated on Thu Jan 26 00:18:00 UTC 2012
[aur-mirror.git] / libhx / PKGBUILD
blob384c899fd78b68a80641da855972bb059fe285af
1 # Maintainer: Max Roder <maxroder@web.de>
2 # Contributor: Nathan Owe <ndowens.aur at gmail dot com>
4 pkgname='libhx'
5 pkgver='3.12.1'
6 pkgrel='1'
7 pkgdesc='A library providing queue, tree, I/O and utility functions'
8 arch=('i686' 'x86_64')
9 url=('http://libhx.sourceforge.net/')
10 license=('GPL')
11 depends=('glibc')
12 options=('!libtool' '!docs')
13 source=("http://downloads.sourceforge.net/${pkgname}/libHX-${pkgver}.tar.xz")
14 sha256sums=('15476e7a8ea6fb30da16fe0516a7e6ab94f3f5d367f773579e2fa47be6f7a73c')
16 build()
18   cd ${srcdir}/libHX-${pkgver}
20   ./configure --prefix=/usr
21   make
24 package()
26   cd ${srcdir}/libHX-${pkgver}
27         
28   make DESTDIR=${pkgdir} install
31 # vim:set ts=2 sw=2 et: