2018-05-28 21:12:29 +02:00
|
|
|
#!/bin/bash
|
2011-04-25 15:37:00 +02:00
|
|
|
|
|
|
|
# Copyright 2010 B. Watson (yalhcru@gmail.com)
|
2024-03-11 19:29:55 +01:00
|
|
|
# Copyright 2010, 2015, 2018, 2020, 2024 Patrick J. Volkerding, Sebeka, Minnesota, USA
|
2011-04-25 15:37:00 +02:00
|
|
|
# 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.
|
|
|
|
|
2018-05-28 21:12:29 +02:00
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
|
2011-04-25 15:37:00 +02:00
|
|
|
PKGNAM=xaos
|
2024-03-11 19:29:55 +01:00
|
|
|
SRCNAM=XaoS
|
|
|
|
VERSION=${VERSION:-$(echo $SRCNAM-*.tar.?z | cut -f 2 -d -)}
|
|
|
|
BUILD=${BUILD:-1}
|
2011-04-25 15:37:00 +02:00
|
|
|
|
|
|
|
# Automatically determine the architecture we're building on:
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
|
|
|
# might as well use i686 since it won't listen to our CFLAGS anyway
|
|
|
|
i?86) ARCH=i686 ;;
|
|
|
|
arm*) ARCH=arm ;;
|
|
|
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
|
|
|
*) ARCH=$( uname -m ) ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2018-05-28 21:12:29 +02:00
|
|
|
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
|
|
|
# the name of the created package would be, and then exit. This information
|
|
|
|
# could be useful to other scripts.
|
|
|
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
|
|
|
echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2020-07-29 06:46:21 +02:00
|
|
|
NUMJOBS=${NUMJOBS:-" -j $(expr $(nproc) + 1) "}
|
|
|
|
|
2011-04-25 15:37:00 +02:00
|
|
|
TMP=${TMP:-/tmp}
|
|
|
|
PKG=$TMP/package-$PKGNAM
|
|
|
|
|
|
|
|
rm -rf $PKG
|
2024-03-11 19:29:55 +01:00
|
|
|
mkdir -p $TMP $PKG
|
2011-04-25 15:37:00 +02:00
|
|
|
cd $TMP
|
2024-03-11 19:29:55 +01:00
|
|
|
rm -rf $SRCNAM-$VERSION*
|
|
|
|
tar xvf $CWD/$SRCNAM-$VERSION*.tar.?z || exit 1
|
|
|
|
cd $SRCNAM-$VERSION* || exit 1
|
2016-06-30 22:26:57 +02:00
|
|
|
|
2011-04-25 15:37:00 +02:00
|
|
|
chown -R root:root .
|
|
|
|
chmod -R a-s,u+w,go+r-w .
|
|
|
|
|
2024-03-11 19:29:55 +01:00
|
|
|
# Configure, build, and install:
|
|
|
|
mkdir cmake-build
|
|
|
|
cd cmake-build
|
|
|
|
cmake \
|
|
|
|
-DCMAKE_C_FLAGS="$SLKCFLAGS" \
|
|
|
|
-DCMAKE_CXX_FLAGS="$SLKCFLAGS" \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DLIB_SUFFIX="$LIBDIRSUFFIX" \
|
|
|
|
-DDOC_INSTALL_DIR="doc" \
|
|
|
|
-DMAN_INSTALL_DIR=/usr/man \
|
|
|
|
.. || exit 1
|
|
|
|
make $NUMJOBS || make || exit 1
|
|
|
|
make install DESTDIR=$PKG || exit 1
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
# Stuff gets installed in the wrong place (and isn't currently configurable)
|
|
|
|
# but the binary knows where it's supposed to be so we'll just move it:
|
2020-07-29 06:46:21 +02:00
|
|
|
mkdir -p $PKG/usr/share/XaoS
|
2024-03-11 19:29:55 +01:00
|
|
|
mv $PKG/usr/{catalogs,examples,tutorial} $PKG/usr/share/XaoS
|
|
|
|
if [ ! -r $PKG/usr/share/XaoS/examples/README ]; then
|
|
|
|
cp -a examples/README $PKG/usr/share/XaoS/examples
|
|
|
|
fi
|
2011-04-25 15:37:00 +02:00
|
|
|
|
2024-03-11 19:29:55 +01:00
|
|
|
# Let's link to the old name too:
|
|
|
|
ln -sf XaoS $PKG/usr/bin/xaos
|
2011-04-25 15:37:00 +02:00
|
|
|
|
2020-07-29 06:46:21 +02:00
|
|
|
mkdir -p $PKG/usr/share/pixmaps
|
|
|
|
cp -a xdg/xaos.png $PKG/usr/share/pixmaps
|
2011-04-25 15:37:00 +02:00
|
|
|
|
|
|
|
mkdir -p $PKG/usr/share/applications
|
2024-03-11 19:29:55 +01:00
|
|
|
cp -a xdg/io.github.xaos_project.XaoS.desktop $PKG/usr/share/applications/xaos.desktop
|
2011-04-25 15:37:00 +02:00
|
|
|
|
2020-07-29 06:46:21 +02:00
|
|
|
# Replace bogus manpage:
|
|
|
|
mkdir -p $PKG/usr/man/man6
|
|
|
|
zcat $CWD/xaos.6.gz > $PKG/usr/man/man6/xaos.6
|
|
|
|
gzip -9 $PKG/usr/man/man6/xaos.6
|
2011-04-25 15:37:00 +02:00
|
|
|
|
2020-07-29 06:46:21 +02:00
|
|
|
mkdir -p $PKG/usr/doc/xaos-$VERSION
|
2011-04-25 15:37:00 +02:00
|
|
|
cp -a \
|
2020-07-29 06:46:21 +02:00
|
|
|
COPYING* CREDITS* NEWS* README* \
|
2011-04-25 15:37:00 +02:00
|
|
|
$PKG/usr/doc/xaos-$VERSION
|
2020-07-29 06:46:21 +02:00
|
|
|
cp -a doc/XaoS.lsm $PKG/usr/doc/xaos-$VERSION
|
|
|
|
cp -a doc/README $PKG/usr/doc/xaos-$VERSION/wiki.url
|
2011-04-25 15:37:00 +02:00
|
|
|
|
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
|
|
|
|
cd $PKG
|
2024-03-11 19:29:55 +01:00
|
|
|
/sbin/makepkg -l y -c n $TMP/$PKGNAM-$VERSION-$ARCH-$BUILD.txz
|