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

30 lines
694 B
YAML

distributable:
url: https://gitlab.com/esr/wumpus/-/archive/{{ version.raw }}/wumpus-{{ version.raw }}.tar.gz
strip-components: 1
versions:
gitlab: esr/wumpus/tags
provides:
- bin/wumpus
- bin/superhack
build:
dependencies:
#pagure.io/xmlto: '*'
script: |
make wumpus superhack
# When xmlto is packaged then switch the to `make ... install`
mkdir -p "{{prefix}}"/bin
mv wumpus superhack "{{prefix}}"/bin
# make prefix={{prefix}} install
test:
script: |
wumpus > wumpus.out &
superhack > superhack.out &
sleep 1
test "x$(head -n1 wumpus.out)" = "xINSTRUCTIONS (Y-N)" && \
test "x$(head -n1 superhack.out)" = "xHunt the Superhack"