blob: b18d0649ea50402e5afad33bcc19ee90e6340a67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/bash
MAKEDEPS=(make )
DEPS=(glibc 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
}
|