mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
a1b84aa7da
* set gem path correctly
35 lines
733 B
YAML
35 lines
733 B
YAML
distributable:
|
|
url: https://ftp.gnu.org/gnu/make/make-{{ version.raw }}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
# github: mirror/make/tags -- these versions don't match the source versions...
|
|
- 4.3
|
|
|
|
provides:
|
|
- bin/make
|
|
|
|
interprets:
|
|
filename: Makefile
|
|
args: [make, --file]
|
|
|
|
build:
|
|
dependencies:
|
|
gnu.org/m4: 1
|
|
tea.xyz/gx/make: '*' #FIXME bootstrapping system
|
|
tea.xyz/gx/cc: c99
|
|
script: |
|
|
./configure --prefix={{ prefix }} --disable-dependency-tracking
|
|
make --jobs {{ hw.concurrency }} install
|
|
|
|
test:
|
|
#TODO build self
|
|
script: |
|
|
make --file=$FIXTURE
|
|
test "$(cat foo)" = bar
|
|
make --question --file=$FIXTURE
|
|
fixture:
|
|
"foo:\n\techo bar > $@"
|
|
env:
|
|
MAKEFLAGS: --file=$FIXTURE
|