mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
37 lines
708 B
YAML
37 lines
708 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:
|
|
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}}
|