mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
23 lines
647 B
Bash
23 lines
647 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
||
|
# Contributor: Bernhard Walle <bernhard.walle@gmx.de>
|
||
|
|
||
|
pkgname=libnxml
|
||
|
pkgver=0.18.3
|
||
|
pkgrel=1
|
||
|
pkgdesc="C library for parsing, writing and creating XML 1.0 and 1.1 files or streams"
|
||
|
url="http://www2.autistici.org/bakunin//libnxml/"
|
||
|
license=('LGPL')
|
||
|
depends=('curl')
|
||
|
arch=('i686' 'x86_64')
|
||
|
options=('!libtool')
|
||
|
source=(http://www2.autistici.org/bakunin//libnxml/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('857f43970e7f0724d28f4ddc87085daf')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install
|
||
|
}
|