summaryrefslogtreecommitdiffstats
path: root/network/dogecoin/dogecoin.SlackBuild
blob: 10d35b6e3b777ea8f4fc3155ade6d008429e2d09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
#!/bin/bash

# Slackware build script for dogecoin

# Written by Pedro Guimaraes <moisespedro15@gmail.com>

#This program is free software; you can redistribute it and/or
#modify it under the terms of the GNU General Public License
#as published by the Free Software Foundation; either version 2
#of the License, or (at your option) any later version.

#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#GNU General Public License for more details.

#You should have received a copy of the GNU General Public License
#along with this program; if not, write to the Free Software
#Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

PRGNAM=dogecoin
VERSION=${VERSION:-1.6}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}

CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}

MARCH=$( uname -m )
if [ -z "$ARCH" ]; then
  case "$MARCH" in
    i?86)    export ARCH=i486 ;;
    armv7hl) export ARCH=$MARCH ;;
    armv6hl) export ARCH=$MARCH ;;
    arm*)    export ARCH=arm ;;
    *)       export ARCH=$MARCH ;;
  esac
fi

case "$ARCH" in
  i486)    SLKCFLAGS="-O2 -march=i486 -mtune=i686"
           SLKLDFLAGS=""; LIBDIRSUFFIX=""
           ;;
  x86_64)  SLKCFLAGS="-O2 -fPIC"
           SLKLDFLAGS="-L/usr/lib64"; LIBDIRSUFFIX="64"
           ;;
  armv7hl) SLKCFLAGS="-O2 -march=armv7-a -mfpu=vfpv3-d16"
           SLKLDFLAGS=""; LIBDIRSUFFIX=""
           ;;
  armv6hl) SLKCFLAGS="-O2 -march=armv6 -mfpu=vfp -mfloat-abi=hard"
           SLKLDFLAGS=""; LIBDIRSUFFIX=""
           ;;
  *)       SLKCFLAGS="-O2"
           SLKLDFLAGS=""; LIBDIRSUFFIX=""
           ;;
esac

case "$ARCH" in
    arm*)    TARGET=$ARCH-slackware-linux-gnueabi ;;
    *)       TARGET=$ARCH-slackware-linux ;;
esac

set -e

rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz || tar xvf $CWD/$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
 \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
  -o -perm 511 \) -exec chmod 755 {} \; -o \
 \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
 -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;

# Detect miniupnpc
if [ -x /usr/bin/upnpc ]; then UPNP=1; else UPNP="-"; fi

# Detect qrencode
if [ -x /usr/bin/qrencode ]; then QRCODE=1; else QRCODE=0; fi

# Build dogecoin-qt
echo Building dogecoin-qt ...
qmake \
  QMAKE_CFLAGS+="$SLKCFLAGS" \
  QMAKE_CXXFLAGS+="$SLKCFLAGS -DBOOST_VARIANT_USE_RELAXED_GET_BY_DEFAULT=1" \
  USE_UPNP="$UPNP" \
  USE_QRCODE="$QRCODE" \
  USE_SSL=1

make

# Build dogecoind
cd src

  if [ "$UPNP" = "-" ]; then
    # disable UPNP
    sed -i 's/USE_UPNP:=0/USE_UPNP:=/g' makefile.unix
  fi

  # disable static linking, not supported by boost in slackware
  sed -i 's/Bstatic/Bdynamic/g' makefile.unix

  CFLAGS="$SLKCFLAGS" \
  CXXFLAGS="$SLKCFLAGS -DBOOST_VARIANT_USE_RELAXED_GET_BY_DEFAULT=1" \
  make -f makefile.unix \
    dogecoind \
    USE_SSL=1

cd -

mkdir -p $PKG/usr/{bin,man/man{1,5}}
mkdir -p $PKG/usr/share/{applications,kde4/services,pixmaps}

install -m 0755 dogecoin-qt $PKG/usr/bin/
install -m 0755 src/dogecoind $PKG/usr/bin/

install -m 0644 contrib/debian/manpages/dogecoin-qt.1 $PKG/usr/man/man1/
install -m 0644 contrib/debian/manpages/dogecoind.1 $PKG/usr/man/man1/
install -m 0644 contrib/debian/manpages/dogecoin.conf.5 $PKG/usr/man/man5/

install -m 0644 -T share/pixmaps/bitcoin128.png $PKG/usr/share/pixmaps/dogecoin128.png
install -m 0644 contrib/debian/dogecoin-qt.desktop $PKG/usr/share/applications/
install -m 0644 contrib/debian/dogecoin-qt.protocol $PKG/usr/share/kde4/services/

find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
  | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true

find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done

mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a doc/README.md COPYING $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild

mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh

cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}