mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
40 lines
773 B
YAML
40 lines
773 B
YAML
|
distributable:
|
||
|
url: https://github.com/hunspell/hunspell/releases/download/v{{version}}/hunspell-{{version}}.tar.gz
|
||
|
strip-components: 1
|
||
|
|
||
|
display-name: hunspell
|
||
|
|
||
|
versions:
|
||
|
github: hunspell/hunspell
|
||
|
|
||
|
dependencies:
|
||
|
gnu.org/readline: '*'
|
||
|
invisible-island.net/ncurses: '*'
|
||
|
gnu.org/gettext: '*'
|
||
|
|
||
|
build:
|
||
|
dependencies:
|
||
|
tea.xyz/gx/cc: c99
|
||
|
tea.xyz/gx/make: '*'
|
||
|
script: |
|
||
|
./configure $ARGS
|
||
|
make --jobs {{ hw.concurrency }}
|
||
|
make --jobs {{ hw.concurrency }} install
|
||
|
env:
|
||
|
ARGS:
|
||
|
- --prefix="{{prefix}}"
|
||
|
- --with-readline
|
||
|
- --with-ui
|
||
|
- --disable-silent-rules
|
||
|
|
||
|
provides:
|
||
|
- bin/analyze
|
||
|
- bin/chmorph
|
||
|
- bin/hunspell
|
||
|
- bin/hunzip
|
||
|
- bin/hzip
|
||
|
- bin/munch
|
||
|
- bin/unmunch
|
||
|
|
||
|
test:
|
||
|
hunspell --version | grep {{version}}
|