blob: 066eeffa5395f0a407bda974695c67becca2f1ff (
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
28
29
|
#!/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="https://github.com/bakulf/libmrss/archive/refs/tags/$PKG_VER.tar.gz"
prepare () {
# this file is required
touch NEWS
autoreconf -vif
}
build() {
./configure --prefix=/usr
make
}
check() {
make check
}
package() {
make DESTDIR=$PKG_DEST install
}
|