kiss-mfavila-large/ports/fvwm3-git/build
2021-05-09 03:10:08 -03:00

20 lines
522 B
Bash
Executable File

#!/bin/sh -e
# Pull asciidoctor with the best tool available
if [ -x /bin/axel ]
then axel --output=tmp.tgz https://github.com/asciidoctor/asciidoctor/archive/refs/tags/v2.0.14.tar.gz
else curl --output tmp.tgz https://github.com/asciidoctor/asciidoctor/archive/refs/tags/v2.0.14.tar.gz
fi
# Unpack it and set its bindir into PATH for building FVWM docs
tar xf tmp.tgz
export PATH="$PWD/asciidoctor-2.0.14/bin/:$PATH"
./autogen.sh
./configure \
--prefix=/usr \
--enable-mandoc
ls
make
make DESTDIR="$1" install