mirror of
https://github.com/ivabus/pantry
synced 2024-11-13 03:55:18 +03:00
da9ddfc767
* #717 +nano-editor.org * cleanup deps * add gnu make * rm unused code * improve strategy in getting version * use strip-components instead workdir * fix dependencies version * add proper version testing --------- Co-authored-by: neil <neil@neils-MacBook-Pro.local>
44 lines
850 B
YAML
44 lines
850 B
YAML
distributable:
|
|
url: https://www.nano-editor.org/dist/v{{ version.major }}/nano-{{ version.raw }}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
- 7.2
|
|
|
|
dependencies:
|
|
gnu.org/gettext: "*"
|
|
invisible-island.net/ncurses: ">=6.0"
|
|
|
|
provides:
|
|
- bin/nano
|
|
|
|
build:
|
|
dependencies:
|
|
freedesktop.org/pkg-config: ^0.29
|
|
gnu.org/automake: ^1.16
|
|
gnu.org/make: "*"
|
|
tea.xyz/gx/cc: "*"
|
|
script: |
|
|
./configure $ARGS
|
|
make install
|
|
env:
|
|
ARGS:
|
|
- --disable-debug
|
|
- --disable-dependency-tracking
|
|
- --prefix="{{prefix}}"
|
|
- --sysconfdir="{{prefix}}"
|
|
- --enable-color
|
|
- --enable-extra
|
|
- --enable-multibuffer
|
|
- --enable-nanorc
|
|
- --enable-utf8
|
|
|
|
test:
|
|
script: |
|
|
valid=0
|
|
if echo $(nano --version) | grep "version {{version.marketing}}";
|
|
then
|
|
valid=1
|
|
fi
|
|
test $valid = 1
|