pantry/projects/gnu.org/gdbm/package.yml
Max Howell 81e7a5e16f
pkgx
2023-10-01 14:44:42 -04:00

29 lines
605 B
YAML

distributable:
url: https://ftp.gnu.org/gnu/gdbm/gdbm-{{ version.raw }}.tar.gz
strip-components: 1
versions:
url: https://ftp.gnu.org/gnu/gdbm/
match: /gdbm-\d+\.\d+(\.\d+)?\.tar\.gz/
strip:
- /gdbm-/
- /.tar.gz/
build:
dependencies:
script: |
./configure --prefix={{ prefix }} --without-readline
make install
test:
script: |
echo -e $INPUT1 | gdbmtool --norc --newdb test
test $(echo -e $INPUT2 | gdbmtool --norc test) = "2"
env:
INPUT1: "store 1 2\\nquit\\n"
INPUT2: "fetch 1\\nquit\\n"
provides:
- bin/gdbm_dump
- bin/gdbm_load
- bin/gdbmtool