summaryrefslogtreecommitdiff
path: root/community/libhx
diff options
context:
space:
mode:
Diffstat (limited to 'community/libhx')
-rw-r--r--community/libhx/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/community/libhx/PKGBUILD b/community/libhx/PKGBUILD
new file mode 100644
index 000000000..284cd0901
--- /dev/null
+++ b/community/libhx/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: Max Roder <maxroder@web.de>
+# Contributor: Nathan Owe <ndowens.aur at gmail dot com>
+
+pkgname='libhx'
+pkgver='3.12.1'
+pkgrel='1'
+pkgdesc='A library providing queue, tree, I/O and utility functions'
+arch=('i686' 'x86_64')
+url=('http://libhx.sourceforge.net/')
+license=('GPL')
+depends=()
+options=('!libtool')
+source=("http://downloads.sourceforge.net/${pkgname}/libHX-${pkgver}.tar.xz")
+md5sums=('de66ebb98e73ffd4831090257a7b9533')
+
+build() {
+ cd ${srcdir}/libHX-${pkgver}
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd ${srcdir}/libHX-${pkgver}
+ make DESTDIR=${pkgdir} install
+}