blob: 3906bbb284571094c28f8d62ca55adb0caddb4aa (
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.21
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
}
|