blob: 284cd09013473c2a31cd991c893f50f2059f7690 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
}
|