It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
#!/bin/bash
coinname="metalmusiccoin"
pcdversion=`/bin/basename "$PWD" | \
/bin/sed -e "s,\.,,g" \
-e "s,MTLMC,metalcoind,"`
echo "pcdversion=${pcdversion} pwd=${PWD} coinname=${coinname}"
cd src
if [ "x${1}" = "x" ]; then
rm -f obj/version.*
OPENSSL_INCLUDE_PATH="/usr/include/openssl-1.0"
OPENSSL_LIB_PATH="/usr/lib64/openssl-1.0"
BOOST_INCLUDE_PATH="/usr/local/boost-1.59.0/include"
BOOST_LIB_SUFFIX=
BOOST_LIB_PATH="/usr/local/boost-1.59.0/lib"
export OPENSSL_INCLUDE_PATH OPENSSL_LIB_PATH BOOST_INCLUDE_PATH BOOST_LIB_SUFFIX BOOST_LIB_PATH
make -f makefile.g++98 USE_UPNP=-
stat=$?
exit $stat
elif [ "x${1}" = "x--clean" -o "x${1}" = "xclean" ]; then
make -f makefile.unix clean
stat=$?
exit $stat
elif [ "x${1}" = "x--install" -o "x${1}" = "xinstall" ]; then
if [ -r ${coinname}3d ]; then
cp -p ${coinname}3d /usr/local/bin/${pcdversion}
stat=$?
if [ $stat -ne 0 ]; then
echo "error ${stat} copying ${coinname}3d into /usr/local/bin/${pcdversion}"
else
echo "installed into: /usr/local/bin/${pcdversion}"
fi
exit 0
else
echo "cannot install: ${PWD}/${coinname}3d is not readable"
exit 2
fi
else
echo "unrecognized option: ${1}"
exit 1
fi