Skip to content
Snippets Groups Projects
Commit f5fb42e5 authored by Kenneth Reitz's avatar Kenneth Reitz
Browse files

add autoconf

parent 4995eeec
No related branches found
No related tags found
No related merge requests found
......@@ -3,8 +3,16 @@
OUT_PREFIX=$1
echo "Building libffi..."
echo "Building autoconf..."
curl http://files.directadmin.com/services/custombuild/autoconf-2.61.tar.gz | tar xz
cd autoconf-2.61
./configure --prefix=$OUT_PREFIX
make
make install
echo "Building libffi..."
SOURCE_TARBALL='https://github.com/atgreen/libffi/archive/master.tar.gz'
......@@ -12,6 +20,7 @@ curl -L $SOURCE_TARBALL | tar xz
mv libffi-master libffi
cd libffi
./autogen.sh
./configure --prefix=$OUT_PREFIX
make
make install
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment