use generic file name to store compilation instruction

Add GLPI (with github clone to patch install)
This commit is contained in:
thomas 2022-03-06 00:37:44 +01:00
parent 38ded86d9f
commit 853e9f431b
28 changed files with 170 additions and 50 deletions

61
ressources/glpi/debmaker Executable file
View file

@ -0,0 +1,61 @@
#!/bin/bash
VERSION=10.0.0-rc2-thl
RELEASE=1
[ -e ./lib/function.sh ] && source ./lib/function.sh
APP=glpi
DEPOT=https://github.com/tomamplius/glpi.git
GIT_VERSION=${VERSION}
DEB_VERSION=${VERSION}-${RELEASE}
DEBIAN_VERSION_CODENAME=bullseye
IMAGE_SIZE=2
STEP="envinit prebuild build makedeb"
envinit() {
if [ $(dpkg -l | grep -e 'ii composer ' | wc -l) -eq 1 ];
then
apt-get update
apt-get dist-upgrade -y
else
apt install -y --no-install-recommends git fakeroot dpkg patch composer php-json php-xml php-curl php-gd php-intl php-ldap php-zip php-mysql wget gettext
wget -qO - https://deb.nodesource.com/setup_16.x | bash
apt install nodejs
fi
}
prebuild(){
[ -e /tmp/git ] && rm -fr /tmp/git
[ -e /tmp/${APP} ] || mkdir /tmp/${APP}
git clone --depth 1 -b ${GIT_VERSION} ${DEPOT} /tmp/git
cp -fr /tmp/git/. /tmp/${APP}
}
build(){
cd /tmp/${APP}
./tools/make_release.sh -y . ${VERSION}
}
makedeb(){
PATH_DEB=/tmp/src/rootfs
tar -zxvf /tmp/${APP}-${VERSION}.tgz -C ${PATH_DEB}/usr/share/
mv ${PATH_DEB}/usr/share/glpi/*.md ${PATH_DEB}/usr/share/doc/glpi/
gzip ${PATH_DEB}/usr/share/doc/glpi/*
mv ${PATH_DEB}/usr/share/glpi/files ${PATH_DEB}/var/lib/glpi/
ln -s /var/lib/glpi/files ${PATH_DEB}/usr/share/glpi/files
mv ${PATH_DEB}/usr/share/glpi/marketplace ${PATH_DEB}/var/lib/glpi/
ln -s /var/lib/glpi/marketplace ${PATH_DEB}/usr/share/glpi/marketplace
cp -r ${PATH_DEB}/usr/share/glpi/config/. ${PATH_DEB}/etc/glpi/
rm -fr ${PATH_DEB}/usr/share/glpi/config/
ln -s /etc/glpi/ ${PATH_DEB}/usr/share/glpi/config
sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control
fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist
}

View file

View file

@ -0,0 +1,8 @@
Package: glpi
Version: %VERSION%
Section: base
Priority: optional
Architecture: all
Depends: php-json, php-xml, php-curl, php-gd, php-intl, php-ldap, php-zip, php-mysql, php-bz2, php-mbstring
Maintainer: Thomas Legay <thomas@syngate.fr>
Description: glpi

View file

@ -0,0 +1,3 @@
#!/bin/bash
chown -R www-data:www-data /var/lib/glpi
chown -R www-data:www-data /etc/glpi

View file

@ -0,0 +1 @@

View file

@ -0,0 +1,10 @@
<VirtualHost *:80>
ServerName glpi.domaine.com
DocumentRoot /usr/share/glpi
<directory /usr/share/glpi>
Options FollowSymLinks
AllowOverride all
Require all granted
</directory>
</VirtualHost>

View file

@ -0,0 +1 @@