summaryrefslogtreecommitdiffstats
path: root/network/asterisk/asterisk.SlackBuild
blob: c918343a8711e519e1ea7ee28b1aa3ce3fbc5779 (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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
#!/bin/sh

# Copyright 2006, Alan Hicks, Lizella, GA
# Copyright 2010, 2013, 2015  Mario Preksavec, Zagreb, Croatia
# Copyright 2018-2020 Chris Walker, Kempner, TX
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
#
#  THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
#  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
#  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO
#  EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
#  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
#  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
#  OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
#  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
#  OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
#  ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

PRGNAM=asterisk
VERSION=${VERSION:-16.15.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}

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

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

ASTERISKUSR=${ASTERISKUSR:-asterisk}
ASTERISKGRP=${ASTERISKGRP:-asterisk}
ASTERISKUID=${ASTERISKUID:-267}
ASTERISKGID=${ASTERISKGID:-267}

CACHEDIR=$TMP/$PRGNAM-cache
IMAPDIR=$TMP/imap-2007f

if [ "$ARCH" = "i586" ]; then
  SLKCFLAGS="-O2 -march=i586 -mtune=i686"
  LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
  SLKCFLAGS="-O2 -march=i686 -mtune=i686"
  LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
  SLKCFLAGS="-O2 -fPIC"
  LIBDIRSUFFIX="64"
else
  SLKCFLAGS="-O2"
  LIBDIRSUFFIX=""
fi

do_exit() {
  echo ; echo "You must have the ${ASTERISKUSR} user and ${ASTERISKGRP} group in"
  echo "order to build asterisk.  Sample lines to do so are below:"
  echo "# groupadd -g ${ASTERISKGID} ${ASTERISKGRP}"
  echo "# useradd -u ${ASTERISKUID} -d /var/lib/asterisk -s /bin/false -g ${ASTERISKGRP} ${ASTERISKUSR}"
  echo "Exiting..." ; echo ; exit 1
}

getent group ${ASTERISKGRP} >/dev/null || do_exit
getent passwd ${ASTERISKUSR} >/dev/null || do_exit

set -e

rm -fr $PKG $TMP/$PRGNAM-$VERSION $IMAPDIR $CACHEDIR
mkdir -p $TMP $PKG $OUTPUT $CACHEDIR
cd $TMP

# The following configuration options are determined by the users passed
# in command-line options. Build the configuration parameters for the
# configure script.
CONFIGURE_OPTS=

if [ "${VM_IMAP:-no}" != "no" ] && [ "${VM_ODBC:-no}" = "no" ]; then
  tar xvf $CWD/imap.tar.Z
  ( cd imap-2007f
    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 {} \;

    if [ "$ARCH" = "x86_64" ]; then
      make slx EXTRACFLAGS="-fPIC -I/usr/include/openssl"
    else
      make slx EXTRACFLAGS="-I/usr/include/openssl"
    fi
  )
  CONFIGURE_OPTS="--with-imap=$IMAPDIR"
fi

if [ "${JANSSON:-yes}" = "yes" ]; then
  CONFIGURE_OPTS="${CONFIGURE_OPTS} --with-jansson-bundled"
else
  CONFIGURE_OPTS="${CONFIGURE_OPTS} --without-jansson-bundled"
fi

if [ "${PJSIP:-no}" != "no" ]; then
  CONFIGURE_OPTS="${CONFIGURE_OPTS} --with-pjproject-bundled"
else
  CONFIGURE_OPTS="${CONFIGURE_OPTS} --without-pjproject-bundled"
fi

# The configure script will download additional files from the internet.
# Make sure the additional files can be found by the configure script
# before configuring the package.
cp $CWD/asterisk-core-sounds* $CWD/asterisk-extra-sounds* \
   $CWD/asterisk-moh-opsound* $CWD/jansson-*.tar.bz2 $CWD/pjproject-*.tar.bz2 \
   $CACHEDIR

tar xvf $CWD/$PRGNAM-$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 {} \;

CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
  --prefix=/usr \
  --libdir=/usr/lib${LIBDIRSUFFIX} \
  --sysconfdir=/etc \
  --localstatedir=/var \
  --mandir=/usr/man \
  --with-cap \
  --with-download-cache=$CACHEDIR \
  $CONFIGURE_OPTS \
  --build=$ARCH-slackware-linux

( cd menuselect
  make menuselect
)
make menuselect-tree

# Supported values for LANGUAGE are: EN, EN_AU, EN_GB, EN_NX, ES, FR, IT
# RU, JA, and SV. Until I can get around to individually listing the
# additional files as part of this package I'm going to leave this
# option undocumented in the README and README.SBo. Specifying anything
# other than EN will cause the makefile to download additional sound
# files.
LANGUAGE=${LANGUAGE:-EN}

menuselect/menuselect \
  --enable res_config_mysql \
  --enable CORE-SOUNDS-${LANGUAGE}-WAV \
  --enable CORE-SOUNDS-${LANGUAGE}-ULAW \
  --enable CORE-SOUNDS-${LANGUAGE}-ALAW \
  --enable CORE-SOUNDS-${LANGUAGE}-G729 \
  --enable CORE-SOUNDS-${LANGUAGE}-G722 \
  menuselect.makeopts

if [ "${MOH:-no}" != "no" ]; then
  menuselect/menuselect \
    --enable MOH-OPSOUND-ULAW \
    --enable MOH-OPSOUND-ALAW \
    --enable MOH-OPSOUND-G729 \
    --enable MOH-OPSOUND-G722 \
    menuselect.makeopts
fi

if [ "${SOUNDS_EXTRA:-no}" != "no" ]; then
  # EXTRA_SOUNDS only has a subset of languages available for CORE_SOUNDS
  LANGUAGE_EXTRA=EN
  if [ "${LANGUAGE}" = "EN" -o "${LANGUAGE}" = "EN_GB" -o "${LANGUAGE}" -o "FR" ]; then
    LANGUAGE_EXTRA="${LANGUAGE}"
  fi
  menuselect/menuselect \
    --enable EXTRA-SOUNDS-${LANGUAGE_EXTRA}-WAV \
    --enable EXTRA-SOUNDS-${LANGUAGE_EXTRA}-ULAW \
    --enable EXTRA-SOUNDS-${LANGUAGE_EXTRA}-ALAW \
    --enable EXTRA-SOUNDS-${LANGUAGE_EXTRA}-G729 \
    --enable EXTRA-SOUNDS-${LANGUAGE-EXTRA}-G722 \
    menuselect.makeopts
fi

if [ "${VM_ODBC:-no}" != "no" ]; then
  menuselect/menuselect \
    --enable ODBC_STORAGE \
    menuselect.makeopts
elif [ "${VM_IMAP:-no}" != "no" ]; then
  menuselect/menuselect \
    --enable IMAP_STORAGE \
    menuselect.makeopts
fi

if [ "${MEETME:-no}" != "no" ]; then
  menuselect/menuselect \
    --enable app_meetme \
    menuselect.makeopts
fi

if [ "${G711_NEW:-no}" != "no" ]; then
  menuselect/menuselect \
    --enable G711_NEW_ALGORITHM \
    menuselect.makeopts
fi

make
make installdirs DESTDIR=$PKG
make samples DESTDIR=$PKG
make install DESTDIR=$PKG
make install-logrotate DESTDIR=$PKG

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

mv $PKG/etc/logrotate.d/asterisk $PKG/etc/logrotate.d/asterisk.new

mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/sample_confs
mv $PKG/etc/asterisk/* $PKG/usr/doc/$PRGNAM-$VERSION/sample_confs/
cp -a CHANGES COPYING CREDITS ChangeLog LICENSE README* UPGRADE* doc/ contrib/ast-db-manage \
  $PKG/usr/doc/$PRGNAM-$VERSION/
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild

# Install config files for a typical asterisk server; some of these
# files don't make sense, but recent changes in the module autoloader
# will require empty files to be in place for some items to work
for i in \
  asterisk codecs extensions iax indications musiconhold sip smdi modules voicemail ;
  do
  cat $PKG/usr/doc/$PRGNAM-$VERSION/sample_confs/${i}.conf > \
    $PKG/etc/asterisk/${i}.conf.new ;
done

mkdir -p $PKG/etc/rc.d
install -m 0755 contrib/init.d/rc.slackware.asterisk $PKG/etc/rc.d/rc.asterisk.new

# Fix pid file location in rc script
sed -i 's/asterisk.pid/asterisk\/asterisk.pid/' $PKG/etc/rc.d/rc.asterisk.new

# Set file ownership
chown -R $ASTERISKUSR:$ASTERISKGRP $PKG/usr/lib${LIBDIRSUFFIX}
chown -R $ASTERISKUSR:$ASTERISKGRP $PKG/var/lib/asterisk
chown -R $ASTERISKUSR:$ASTERISKGRP $PKG/var/spool/asterisk
chown -R $ASTERISKUSR:$ASTERISKGRP $PKG/var/log/asterisk
chown -R $ASTERISKUSR:$ASTERISKGRP $PKG/var/run/asterisk
chown $ASTERISKUSR:$ASTERISKGRP $PKG/usr/sbin/asterisk

# The voicemail config file needs to writeable by the asterisk user
# otherwise password changes aren't preserved
chown -R root:$ASTERISKGRP $PKG/etc/asterisk
chmod 664 $PKG/etc/asterisk/voicemail.conf.new

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}