Sha256: 789a61522e8984c94f7446f8594d0446e0df334b9f424f15532a61b5a92a956e

Contents?: true

Size: 677 Bytes

Versions: 4

Compression:

Stored size: 677 Bytes

Contents

#! /bin/sh

if glibtoolize --version > /dev/null 2>&1; then
  LIBTOOLIZE='glibtoolize'
else
  LIBTOOLIZE='libtoolize'
fi

if [ ! -x "`which $LIBTOOLIZE 2>/dev/null`" ] ; then
  echo "libtool is required, but wasn't found on this system"
  exit 1
fi

if [ ! -x "`which autoconf 2>/dev/null`" ] ; then
  echo "autoconf is required, but wasn't found on this system"
  exit 1
fi

if [ ! -x "`which automake 2>/dev/null`" ] ; then
  echo "automake is required, but wasn't found on this system"
  exit 1
fi

if [ -x "`which autoreconf 2>/dev/null`" ] ; then
  exec autoreconf -ivf
fi

$LIBTOOLIZE && \
aclocal && \
automake --add-missing --force-missing --include-deps && \
autoconf

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rbnacl-libsodium-1.0.11 vendor/libsodium/autogen.sh
rbnacl-libsodium-1.0.10 vendor/libsodium/autogen.sh
rbnacl-libsodium-1.0.9 vendor/libsodium/autogen.sh
rbnacl-libsodium-1.0.8 vendor/libsodium/autogen.sh