diff --git a/ressources/postfixadmin/README.MD b/ressources/postfixadmin/README.MD deleted file mode 100644 index 6598ce2..0000000 --- a/ressources/postfixadmin/README.MD +++ /dev/null @@ -1,14 +0,0 @@ -#### postfixadmin - -##### Information -Source : https://github.com/postfixadmin/postfixadmin - -##### Install - -``` -apt install -y wget ca-certificates -wget -qO - https://deb.lgy.fr/install.sh | bash -apt-get update -apt-get install -y postfixadmin -``` - diff --git a/ressources/postfixadmin/debmaker b/ressources/postfixadmin/debmaker deleted file mode 100755 index d45a972..0000000 --- a/ressources/postfixadmin/debmaker +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash - -VERSION=3.3.13 -APP=postfixadmin -DEPOT=https://github.com/postfixadmin/postfixadmin.git -GIT_VERSION=postfixadmin-${VERSION} -DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M) -DEBIAN_VERSION_CODENAME=bullseye -IMAGE_SIZE=4 -PACKAGE_DEPENDENCY="debhelper-compat build-essential:native dh-apache2 composer php-sqlite3 php-mysql php-xml" - -main(){ - base_package_upgrade - install_package_dependency - get_git_source - build - makedeb -} - -build(){ - cd /tmp/${APP}/ - composer -n install - composer -n build - echo -e "postfixadmin (${DEB_VERSION}) unstable; urgency=medium\n\n * fake changelog\n\n Thomas Legay $(date -R)" > debian/changelog -} - -makedeb(){ - cd /tmp/${APP}/ - make -f debian/rules binary-indep - cp /tmp/*.deb /tmp/dist -}