summaryrefslogtreecommitdiff
path: root/community/libhx
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/libhx
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
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..ed40ebd4e
--- /dev/null
+++ b/community/libhx/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 89905 2013-05-05 14:47:57Z spupykin $
+# 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.15
+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=('0165d6aa994a094b2a170d93a48599e0')
+
+build() {
+ cd ${srcdir}/libHX-${pkgver}
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd ${srcdir}/libHX-${pkgver}
+ make DESTDIR=${pkgdir} install
+}