mirror of
https://codeberg.org/gwh/slackbuilds.git
synced 2024-11-16 19:51:19 +01:00
vhost and master
Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
This commit is contained in:
parent
32954aa50b
commit
2eff4b1004
1 changed files with 76 additions and 0 deletions
76
n/wallabag/wallabag.SlackBuild
Executable file
76
n/wallabag/wallabag.SlackBuild
Executable file
|
@ -0,0 +1,76 @@
|
|||
|
||||
#!/bin/sh
|
||||
|
||||
CWD=$(pwd)
|
||||
|
||||
PRGNAM=$(basename $CWD)
|
||||
VERSION=${VERSION:-$(date +%F | tr - .)}
|
||||
ARCH="noarch" # hardcode ARCH
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-cyco}
|
||||
|
||||
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
|
||||
cd $PKG/$VHOSTROOT/
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
|
||||
REPOSITORY=/home/installs/SlackBuilds/repositories/$PRGNAM
|
||||
|
||||
if [ -e $REPOSITORY ]; then
|
||||
(cd $REPOSITORY; git pull)
|
||||
else
|
||||
git clone https://github.com/$PRGNAM/$PRGNAM.git $REPOSITORY
|
||||
fi
|
||||
|
||||
cp -R $REPOSITORY htdocs
|
||||
|
||||
cd htdocs
|
||||
|
||||
git checkout master
|
||||
SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
|
||||
php bin/console wallabag:install --env=prod
|
||||
|
||||
rm -fr .git .gitignore
|
||||
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
|
||||
cp -a *.md $PKG/usr/doc/$PRGNAM
|
||||
|
||||
# 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 (open source self hostable read-it-later web app)
|
||||
$PRGNAM:
|
||||
$PRGNAM: Abandon Pocket, Instapaper and other Readability service :
|
||||
$PRGNAM: adopt poche. It is the same, but it is free (like in freedom)
|
||||
$PRGNAM: and open source.
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM: http://www.wallabag.com/
|
||||
$PRGNAM:
|
||||
EOF
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-txz}
|
Loading…
Reference in a new issue