slackbuilds/n/pluxml/SlackBuild

71 lines
1.8 KiB
Text
Raw Normal View History

2021-06-15 10:26:26 +02:00
#!/bin/bash
2017-02-21 21:11:33 +01:00
CWD=$(pwd)
PRGNAM=$(basename $CWD)
ARCH="noarch" # hardcode ARCH
BUILD=${BUILD:-1}
2020-06-25 11:23:11 +02:00
TAG=${TAG:-gwh}
2017-02-21 21:11:33 +01:00
VHOST=${VHOST:-vhosts/$PRGNAM/}
VHOSTROOT=/var/www/${VHOST}
DOCROOT=${DOCROOT:-/var/www/${VHOST}htdocs}
PHPUSER=${PHPUSER:-apache}
PHPGROUP=${PHPGROUP:-apache}
TMP=${TMP:-/tmp/$TAG}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
set -eu
rm -rf $PKG
mkdir -p $TMP $OUTPUT $PKG/$VHOSTROOT
REPOSITORY=/home/installs/SlackBuilds/repositories/$PRGNAM
[ ! -e $REPOSITORY ] && git clone https://github.com/pluxml/PluXml $REPOSITORY
( cd $REPOSITORY
git pull )
VERSION="git_$( cd $REPOSITORY && git log -1 --format=%h_%ad --date=format:%Y.%m.%d )"
2017-02-21 21:11:33 +01:00
cp -R $REPOSITORY $PKG/$VHOSTROOT/htdocs
rm -fr $PKG/$VHOSTROOT/htdocs/.git
2017-02-21 21:19:45 +01:00
mv $PKG/$VHOSTROOT/htdocs/install.php $PKG/$VHOSTROOT/htdocs/install.php.disabled
2017-02-21 21:11:33 +01:00
cd $PKG/$VHOSTROOT/htdocs
chown -R root:root .
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 -o -perm 755 \) \
-exec chmod 750 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 -o -perm 644 \) \
-exec chmod 640 {} \;
mkdir -p $PKG/usr/doc/$PRGNAM
2021-06-11 22:46:46 +02:00
cp -a README* $PKG/usr/doc/$PRGNAM
2017-02-21 21:11:33 +01:00
# Change ownership and perms and create a link.
chown -R $PHPUSER:$PHPGROUP $PKG/$DOCROOT
chmod 0750 $PKG/$DOCROOT
mkdir -p $PKG/install
cat <<EOF > $PKG/install/slack-desc
$PRGNAM: $PRGNAM (Moteur de Blog et CMS à l'XML sans base de données)
$PRGNAM:
2017-02-21 21:19:45 +01:00
$PRGNAM: (rename $VHOSTROOT/htdocs/install.php.disabled
$PRGNAM: into
$PRGNAM: $VHOSTROOT/htdocs/install.php
$PRGNAM: if it's your first installation)
2017-02-21 21:11:33 +01:00
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM: http://pluxml.org
$PRGNAM:
EOF
cd $PKG
rm -f $PKG/{,usr/}lib$(uname -m | grep -o 64)/*.la
2017-02-21 21:11:33 +01:00
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$(echo $VERSION | tr - _)-$ARCH-$BUILD$TAG.${PKGTYPE:-txz}