slackbuilds/xap/nextcloud-client/SlackBuild

91 lines
2 KiB
Text
Raw Normal View History

#!/bin/sh
2014-03-16 07:20:55 +01:00
# variables
CWD=$(pwd)
PRGNAM=$(basename $CWD)
VERSION=${VERSION:-$(date +"%Y.%m.%d_%H.%M")}
STABLE=${STABLE:-"NO"}
ARCH=${ARCH:-$(uname -m)}
2014-03-16 07:20:55 +01:00
BUILD=1
TAG=cyco
TMP=/tmp/$TAG
PKG=$TMP/pkg-$PRGNAM
OUTPUT=/tmp
REPOSITORY=/home/installs/SlackBuilds/repositories/$PRGNAM
2014-03-16 07:20:55 +01:00
PREFIX=/usr
SLCKFLAGS=" -O "
2014-03-16 07:20:55 +01:00
# nettoyage préalable
rm -fr $PKG $TMP/$PRGNAM
mkdir -p $PKG
2014-03-16 07:20:55 +01:00
# mise en place
cd $TMP
if [ "x$STABLE" == "xYES" ]; then
wget -c https://download.owncloud.com/desktop/stable/$PRGNAM-$VERSION.tar.xz -O $CWD/$PRGNAM-$VERSION.tar.xz
tar xf $CWD/$PRGNAM-$VERSION.tar.xz
else
[ ! -e $REPOSITORY ] && git clone https://github.com/nextcloud/desktop.git $REPOSITORY
( cd $REPOSITORY
git pull
git submodule update --init --recursive )
VERSION="$( cd $REPOSITORY && git log -1 --format=%h_%ad --date=format:%Y.%m.%d )"
cp -R $REPOSITORY $TMP/$PRGNAM-$VERSION
fi
cd $TMP/$PRGNAM-$VERSION
2014-03-16 07:20:55 +01:00
# configuration
cmake \
-DCMAKE_INSTALL_PREFIX=$PREFIX \
-DSYSCONFDIR=/etc \
-DCMAKE_BUILD_TYPE=Release \
-DNO_SHIBBOLETH=1 \
.
2014-03-16 07:20:55 +01:00
# compilation
make -j3
# installation
make install DESTDIR=$PKG
2014-03-16 07:20:55 +01:00
# correction
cd $PKG
chown -R root:root *
find $PKG -name \.git\* -exec rm -fr {} \;
[ -d $PKG/usr/man ] && find $PKG/usr/man -type f -name "*.?" -exec gzip -9f {} \;
# Strip binaries
cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
2014-03-16 07:20:55 +01:00
# embaumement
mkdir -p $PKG/install
cat <<EOF > $PKG/install/slack-desc
$PRGNAM: $PRGNAM (NextCloud Desktop Syncing Client)
$PRGNAM:
$PRGNAM: nextcloud themed desktop client
2014-03-16 07:20:55 +01:00
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM: https://github.com/nextcloud/desktop
2014-03-16 07:20:55 +01:00
$PRGNAM:
EOF
# empaquetage
rm -f $PKG/{,usr/}lib$(uname -m | grep -o 64)/*.la
2014-03-16 07:20:55 +01:00
makepkg -l y -c n $OUTPUT/$PRGNAM-$(echo $VERSION | sed 's/-//g')-$ARCH-$BUILD$TAG.txz