blob: 70d1f0ea69b732379142a925c7526606a784e67a (
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="libmrss"
DESC="mRSS is a C library for parsing, writing and creating RSS files or streams"
MAKEDEPS=" automake autoconf libtool m4 curl libnxml doxygen"
PKG_VER=0.19.2
SOURCE="http://www.autistici.org/bakunin/libmrss/libmrss-$PKG_VER.tar.gz"
build() {
./configure --prefix=/usr
make
}
check() {
make check
}
package() {
make DESTDIR=$PKG_DEST install
}
|