mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
38 lines
785 B
YAML
38 lines
785 B
YAML
distributable:
|
|
url: https://downloads.sourceforge.net/project/net-tools/net-tools-{{version.marketing}}.tar.xz
|
|
strip-components: 1
|
|
|
|
display-name: net-tools
|
|
|
|
versions:
|
|
url: https://sourceforge.net/projects/net-tools/files/
|
|
match: /net-tools-\d+.\d+.tar.xz
|
|
strip:
|
|
- /^net-tools-/
|
|
- /.tar.xz
|
|
|
|
platforms:
|
|
- linux
|
|
|
|
build:
|
|
script: |
|
|
sed -i '/IFS='\''@'\'' read ans || exit 1/d' configure.sh
|
|
make config
|
|
make
|
|
make $ARGS install
|
|
env:
|
|
ARGS:
|
|
- DESTDIR="{{prefix}}"
|
|
|
|
provides:
|
|
- bin/hostname
|
|
- bin/ifconfig
|
|
- bin/netstat
|
|
- bin/route
|
|
|
|
test: |
|
|
hostname --version | grep {{version.marketing}}
|
|
ifconfig --version | grep {{version.marketing}}
|
|
netstat --version | grep {{version.marketing}}
|
|
route --version | grep {{version.marketing}}
|