35 lines
900 B
Bash
35 lines
900 B
Bash
# try on virtualbox ubuntu 16.04
|
|
# https://gist.github.com/quagliero/90f493f123c7b1ddba5428ba0146329a
|
|
|
|
# CLEAN
|
|
make distclean || echo clean
|
|
rm -f config.status
|
|
|
|
# HOTFIX for OSX
|
|
./autogen.sh
|
|
sed -i '' '/LIBCURL_CHECK_CONFIG/d' ./configure
|
|
sed -i '' '/AC_MSG_ERROR/d' ./configure
|
|
|
|
# BUILD
|
|
./autogen.sh
|
|
./configure CFLAGS="-Wall -O2 -fomit-frame-pointer" --with-crypto=/usr/local/opt/openssl --with-curl
|
|
make
|
|
strip nolambocoin-miner
|
|
|
|
# CHECK STATIC
|
|
file nolambocoin-miner | grep "statically linked"
|
|
|
|
# PACKAGE
|
|
RELEASE=nolambocoin-miner-osx
|
|
rm -rf $RELEASE
|
|
mkdir $RELEASE
|
|
cp ./mining-script/sh/*.sh $RELEASE/
|
|
cp nolambocoin-miner $RELEASE/
|
|
|
|
# SIGN
|
|
zip -r $RELEASE/$RELEASE.zip $RELEASE/*
|
|
# sha256sum $RELEASE/$RELEASE.zip > $RELEASE/$RELEASE
|
|
shasum -a 256 $RELEASE/$RELEASE.zip > $RELEASE/$RELEASE
|
|
gpg --digest-algo sha256 --clearsign $RELEASE/$RELEASE
|
|
rm $RELEASE/$RELEASE && cat $RELEASE/$RELEASE.asc
|