mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
51 lines
1 KiB
YAML
51 lines
1 KiB
YAML
distributable:
|
|
url: https://ftp.gnu.org/gnu/ncurses/ncurses-{{ version.raw }}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: mirror/ncurses/tags
|
|
strip: /v/
|
|
|
|
build:
|
|
dependencies:
|
|
freedesktop.org/pkg-config: ^0.29
|
|
tea.xyz/gx/cc: c99
|
|
tea.xyz/gx/make: '*'
|
|
script: |
|
|
mkdir -p $PCDIR
|
|
./configure $ARGS
|
|
make --jobs {{ hw.concurrency }} install
|
|
env:
|
|
PCDIR: ${{prefix}}/lib/pkgconfig
|
|
ARGS:
|
|
- --prefix={{ prefix }}
|
|
- --enable-pc-files
|
|
- --enable-sigwinch
|
|
- --enable-widec
|
|
- --with-shared
|
|
- --with-cxx-shared
|
|
- --with-gpm=no
|
|
- --without-ada
|
|
- --with-pkg-config-libdir=$PCDIR
|
|
|
|
runtime:
|
|
env:
|
|
TERMINFO: /usr/share/terminfo:${{prefix}}/share/terminfo
|
|
# ^^ we delegate to the system first since they may apply platform specific info
|
|
|
|
test:
|
|
script: true #FIXME
|
|
|
|
provides:
|
|
- bin/captoinfo
|
|
- bin/clear
|
|
- bin/infocmp
|
|
- bin/infotocap
|
|
- bin/ncursesw6-config
|
|
- bin/reset
|
|
- bin/tabs
|
|
- bin/tic
|
|
- bin/toe
|
|
- bin/tput
|
|
- bin/tset
|