mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
46 lines
857 B
YAML
46 lines
857 B
YAML
distributable:
|
|
url: https://ftp.gnu.org/gnu/binutils/binutils-{{ version.raw }}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
url: https://ftp.gnu.org/gnu/binutils/
|
|
match: /binutils-\d+\.\d+(\.\d+)?.tar.gz/
|
|
strip:
|
|
- /binutils-/
|
|
- /.tar.gz/
|
|
|
|
build:
|
|
dependencies:
|
|
gnu.org/bison: '*'
|
|
gnu.org/texinfo: '*'
|
|
darwin:
|
|
linux:
|
|
gnu.org/gcc: '*'
|
|
script: |
|
|
./configure --prefix={{ prefix }}
|
|
make --jobs {{ hw.concurrency }}
|
|
make install
|
|
|
|
test:
|
|
script: objdump -x $(which objdump) | grep -s $TEST_STRING
|
|
env:
|
|
# Representitive output to look for
|
|
darwin:
|
|
TEST_STRING: _opendir
|
|
linux:
|
|
TEST_STRING: GNU_HASH
|
|
|
|
provides:
|
|
- bin/addr2line
|
|
- bin/ar
|
|
- bin/c++filt
|
|
- bin/elfedit
|
|
- bin/nm
|
|
- bin/objcopy
|
|
- bin/objdump
|
|
- bin/ranlib
|
|
- bin/readelf
|
|
- bin/size
|
|
- bin/strings
|
|
- bin/strip
|