2020-05-28 23:02:30 +02:00
|
|
|
#!/bin/bash
|
|
|
|
## and then borrowed and slightly modified from https://github.com/datkt/sodium/configure
|
|
|
|
## borrowed from https://github.com/sodium-friends/sodium-native/blob/master/configure
|
2020-06-01 19:40:04 +02:00
|
|
|
PREFIX="${PREFIX:-$PWD/static-macos-x86-64}"
|
2020-05-28 23:02:30 +02:00
|
|
|
KONAN="${KONAN:-$HOME/.konan}"
|
|
|
|
ARCH=${ARCH:-$(uname -m)}
|
2020-05-31 17:14:44 +02:00
|
|
|
echo $PREFIX
|
|
|
|
echo $KONAN
|
|
|
|
echo $ARCH
|
2020-05-28 23:02:30 +02:00
|
|
|
cd libsodium
|
|
|
|
|
|
|
|
./autogen.sh -s -f
|
|
|
|
|
2023-03-26 19:12:15 +02:00
|
|
|
#./configure --prefix=$PREFIX "$@"
|
|
|
|
./configure
|