blob: cd183e41e9af0ad23b69462214364338b7c25b1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
MAKEDEPS="make "
DEPS="musl sh readline"
PKG_VER=1.23
SOURCE=https://ftp.gnu.org/gnu/gdbm/gdbm-$PKG_VER.tar.gz
DESC="GNU database library"
build () {
./configure --prefix=/usr --disable-static --enable-libgdm-compat
make
}
check () {
make -k check || true
}
package () {
make DESTDIR=$PKG_DEST install
}
|