pantry/projects/thrysoee.dk/editline/package.yml
Max Howell 81e7a5e16f
pkgx
2023-10-01 14:44:42 -04:00

35 lines
698 B
YAML

distributable:
url: https://thrysoee.dk/editline/libedit-20221030-{{ version.raw }}.tar.gz
strip-components: 1
versions:
- 3.1
dependencies:
invisible-island.net/ncurses: '*'
build:
dependencies:
script: |
./configure $ARGS
make --jobs {{ hw.concurrency }} install
env:
ARGS:
- --disable-dependency-tracking
- --disable-silent-rules
- --prefix={{ prefix }}
test:
dependencies:
script: |
mv $FIXTURE test.c
cc -o test test.c -ledit
./test
fixture: |
#include <stdio.h>
#include <histedit.h>
int main(int argc, char *argv[]) {
EditLine *el = el_init(argv[0], stdin, stdout, stderr);
return (el == NULL);
}