pantry/projects/gnu.org/autoconf/package.yml
2023-10-01 20:41:57 -04:00

56 lines
1.2 KiB
YAML

distributable:
url: https://ftp.gnu.org/gnu/autoconf/autoconf-{{ version.raw }}.tar.gz
strip-components: 1
versions:
url: https://ftp.gnu.org/gnu/autoconf/
match: /autoconf-(\d+\.\d+(\.\d+)?)\.tar\.gz/
strip:
- /autoconf-/
- /.tar.gz/
provides:
- bin/autoconf
- bin/autoheader
- bin/autom4te
- bin/autoreconf
- bin/autoscan
- bin/autoupdate
- bin/ifnames
dependencies:
gnu.org/m4: 1
perl.org: '*'
build:
dependencies:
git-scm.org: 2
script: |-
./configure \
--build={{ hw.target }} \
--prefix="{{ prefix }}"
make --jobs {{ hw.concurrency }} install
cd "{{prefix}}"
fix-shebangs.ts bin/*
perl -pi -e 's|\x27{{prefix}}|"\$PREFIX"\x27|g' bin/autoconf
# fix specific m4 and perl paths
perl -pi -e 's|{{ deps.perl.org.prefix }}/bin/perl|perl|g' bin/*
perl -pi -e 's|{{ deps.gnu.org/m4.prefix }}/bin/m4|m4|g' bin/*
# fix hardcoded paths
perl -pi -e "s|'{{prefix}}/|\\\$prefix.'/|" bin/*
git apply $SRCROOT/props/relocatable.diff
perl -pi -e 's|{{prefix}}|\$PREFIX|' share/autoconf/autom4te.cfg
test:
script: |
autoconf --verbose --debug
./configure
test -f config.status
test -f config.log