Compare commits
No commits in common. "e287405a258916779ac251267f17c481bf3424c0" and "e3b1112be7c0ff3eefee950bd5c9062a35a60c14" have entirely different histories.
e287405a25
...
e3b1112be7
2 changed files with 0 additions and 45 deletions
|
@ -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
|
|
||||||
```
|
|
||||||
|
|
|
@ -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 <thomas@lgy.fr> $(date -R)" > debian/changelog
|
|
||||||
}
|
|
||||||
|
|
||||||
makedeb(){
|
|
||||||
cd /tmp/${APP}/
|
|
||||||
make -f debian/rules binary-indep
|
|
||||||
cp /tmp/*.deb /tmp/dist
|
|
||||||
}
|
|
Loading…
Reference in a new issue