mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
31 lines
635 B
YAML
31 lines
635 B
YAML
distributable:
|
|
url: https://ftp.gnu.org/gnu/gettext/gettext-{{version.raw}}.tar.gz
|
|
strip-components: 1
|
|
|
|
dependencies:
|
|
gnome.org/libxml2: 2
|
|
#TODO ncurses
|
|
|
|
versions:
|
|
github: autotools-mirror/gettext/tags
|
|
strip: /v/
|
|
|
|
build:
|
|
dependencies:
|
|
tea.xyz/gx/cc: c99
|
|
tea.xyz/gx/make: '*'
|
|
script: |
|
|
./configure \
|
|
--prefix={{ prefix }} \
|
|
--disable-debug \
|
|
--with-included-debug \
|
|
--with-included-libcroco \
|
|
--with-included-libunistring \
|
|
--without-included-libxml \
|
|
--disable-java \
|
|
--disable-csharp
|
|
make --jobs {{ hw.concurrency }}
|
|
make install
|
|
|
|
test: gettext test
|