blob: 94a6adb303d825c8f62b1320c04f58698f4bafc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
NAME="libnxml"
DESC="C library for parsing, writing and creating XML 1.0 and 1.1 files or streams"
MAKEDEPS=" curl"
PKG_VER=0.18.3
SOURCE="http://www.autistici.org/bakunin/libnxml/libnxml-$PKG_VER.tar.gz"
build() {
./configure --prefix=/usr
make
}
check() {
make check
}
package() {
make DESTDIR="$PKG_DEST" install
}
|