mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
31 lines
553 B
YAML
31 lines
553 B
YAML
distributable:
|
|
url: https://ftp.gnu.org/gnu/sed/sed-{{version.raw}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
url: https://ftp.gnu.org/gnu/sed/
|
|
match: /sed-(\d+\.\d+(\.\d+)?)\.tar\.gz/
|
|
strip:
|
|
- /sed-/
|
|
- /.tar.gz/
|
|
|
|
build:
|
|
dependencies:
|
|
script: |
|
|
./configure $ARGS
|
|
make --jobs {{ hw.concurrency }} install
|
|
env:
|
|
ARGS:
|
|
- --prefix="{{prefix}}"
|
|
- --disable-debug
|
|
|
|
provides:
|
|
- bin/sed
|
|
|
|
test:
|
|
fixture:
|
|
Hello world!
|
|
script: |
|
|
sed -i 's/world/World/g' $FIXTURE
|
|
test "$(cat $FIXTURE)" = 'Hello World!'
|