Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/build.sh

104 lines
2.3 KiB
Bash
Raw Normal View History

2015-10-21 19:48:14 +05:00
#!/usr/bin/env bash
2015-10-21 19:45:49 +05:00
root=$(readlink -e $(dirname $0))
set -e
if [ "x" == "x$root" ] ; then
root=$PWD/${0##*}
fi
cd $root
2016-03-09 18:36:44 +05:00
tags=""
help_text="usage: $0 [--disable-redis]"
# check for help flags first
for arg in $@ ; do
case $arg in
-h|--help)
echo $help_text
exit 0
;;
esac
done
2016-05-15 17:19:03 +05:00
rev="QmPAqM7anxdr1ngPmJz9J9AAxDLinDz2Eh9aAzLF9T7LNa"
2016-05-13 17:49:43 +05:00
ipfs="no"
rebuildjs="yes"
2016-04-18 17:40:01 +05:00
_next=""
2016-07-30 17:02:05 +05:00
unstable="no"
2016-03-09 18:36:44 +05:00
# check for build flags
for arg in $@ ; do
case $arg in
2016-07-30 17:02:05 +05:00
"--unstable")
unstable="yes"
;;
"--no-js")
rebuildjs="no"
;;
2016-05-13 17:49:43 +05:00
"--ipfs")
ipfs="yes"
;;
2016-05-17 16:27:29 +05:00
"--cuckoo")
cuckoo="yes"
;;
2016-03-09 18:36:44 +05:00
"--disable-redis")
tags="$tags -tags disable_redis"
;;
2016-04-18 17:40:01 +05:00
"--revision")
_next="rev"
;;
"--revision=*")
rev=$(echo $arg | cut -d'=' -f2)
;;
*)
if [ "x$_next" == "xrev" ] ; then
rev="$arg"
fi
2016-03-09 18:36:44 +05:00
esac
done
2016-04-18 17:40:01 +05:00
if [ "x$rev" == "x" ] ; then
echo "revision not specified"
exit 1
fi
2015-10-21 19:45:49 +05:00
cd $root
if [ "x$rebuildjs" == "xyes" ] ; then
echo "rebuilding generated js..."
./build-js.sh
fi
2016-05-13 17:49:43 +05:00
unset GOPATH
2016-04-19 04:42:24 +05:00
export GOPATH=$PWD/go
mkdir -p $GOPATH
2016-05-13 17:49:43 +05:00
if [ "x$ipfs" == "xyes" ] ; then
2016-05-13 18:52:35 +05:00
if [ ! -e $GOPATH/bin/gx ] ; then
echo "obtaining gx"
2016-05-13 18:56:51 +05:00
go get -u -v github.com/whyrusleeping/gx
fi
if [ ! -e $GOPATH/bin/gx-go ] ; then
echo "obtaining gx-go"
2016-05-13 18:52:35 +05:00
go get -u -v github.com/whyrusleeping/gx-go
fi
echo "building stable revision, this will take a bit. to speed this part up install and run ipfs locally"
2016-05-13 19:50:18 +05:00
mkdir -p $GOPATH/src/gx/ipfs
cd $GOPATH/src/gx/ipfs
$GOPATH/bin/gx get $rev
cd $root
2016-05-13 19:36:56 +05:00
go get -d -v
2016-05-13 19:11:28 +05:00
go build -v .
mv nntpchan srndv2
2016-07-30 17:02:05 +05:00
echo -e "Built\n"
echo "Now configure NNTPChan with ./srndv2 setup"
2016-05-13 17:49:43 +05:00
else
2016-07-30 17:02:05 +05:00
if [ "X$unstable" == "Xyes" ] ; then
go get -u -v github.com/majestrate/srndv2/cmd/nntpchan
cp $GOPATH/bin/nntpchan $root
echo "built unstable, if you don't know what to do, run without --unstable"
else
go get -u -v github.com/majestrate/srndv2
cp $GOPATH/bin/srndv2 $root
echo -e "Built\n"
echo "Now configure NNTPChan with ./srndv2 setup"
fi
2016-05-13 17:49:43 +05:00
fi