Skip to content

Commit

Permalink
fix: use autotools 2.72 for build (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
jnsgruk committed Apr 25, 2024
1 parent d5a2aac commit 36d7f25
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,28 @@ parts:
autotools-configure-parameters:
- --prefix=/usr
build-packages:
- autoconf
- autoconf-archive
- automake
- pkg-config
- gettext
- txt2man
- autopoint
- libssl-dev
- wget
override-build: |
# Later versions of Axel depend on autoconf 2.72, which at
# the time of writing isn't available in any Ubuntu release.
wget -qO autoconf.tar.xz https://ftp.gnu.org/gnu/autoconf/autoconf-2.72.tar.xz
tar xf autoconf.tar.xz
pushd autoconf-2.72
./configure --prefix /opt/autotools
make
make install
popd
/opt/autotools/bin/autoreconf -i -f
craftctl default
stage-packages:
- libssl3

Expand Down

0 comments on commit 36d7f25

Please sign in to comment.