Compare commits
2 Commits
d528292a08
...
9a51326d12
Author | SHA1 | Date |
---|---|---|
Thomas Legay | 9a51326d12 | |
Thomas Legay | e233164591 |
|
@ -44,10 +44,12 @@ To enter in temporary filesystem
|
||||||
|
|
||||||
- [adguardhome](./ressources/adguardhome)
|
- [adguardhome](./ressources/adguardhome)
|
||||||
- [authelia](./ressources/authelia)
|
- [authelia](./ressources/authelia)
|
||||||
|
- [babybuddy](./ressources/babybuddy)
|
||||||
- [bitwarden-desktop](./ressources/bitwarden-desktop)
|
- [bitwarden-desktop](./ressources/bitwarden-desktop)
|
||||||
- [budibase](./ressources/budibase)
|
- [budibase](./ressources/budibase)
|
||||||
- [clouseau](./ressources/clouseau)
|
- [claper](./ressources/claper)
|
||||||
- [cloudbeaver](./ressources/cloudbeaver)
|
- [cloudbeaver](./ressources/cloudbeaver)
|
||||||
|
- [clouseau](./ressources/clouseau)
|
||||||
- [crfpp](./ressources/crfpp)
|
- [crfpp](./ressources/crfpp)
|
||||||
- [element-web](./ressources/element-web)
|
- [element-web](./ressources/element-web)
|
||||||
- [flame](./ressources/flame)
|
- [flame](./ressources/flame)
|
||||||
|
@ -55,10 +57,12 @@ To enter in temporary filesystem
|
||||||
- [glpi](./ressources/glpi)
|
- [glpi](./ressources/glpi)
|
||||||
- [gotify](./ressources/gotify)
|
- [gotify](./ressources/gotify)
|
||||||
- [grocy](./ressources/grocy)
|
- [grocy](./ressources/grocy)
|
||||||
|
- [humhub](./ressources/humhub)
|
||||||
- [joplin desktop](./ressources/joplin)
|
- [joplin desktop](./ressources/joplin)
|
||||||
- [joplin-server](./ressources/joplin-server)
|
- [joplin-server](./ressources/joplin-server)
|
||||||
- [keycloak](./ressources/keycloak)
|
- [keycloak](./ressources/keycloak)
|
||||||
- [kimai2](./ressources/kimai2)
|
- [kimai2](./ressources/kimai2)
|
||||||
|
- [libfq](./ressources/libfq)
|
||||||
- [mautrix-syncproxy and mautrix-wsproxy](./ressources/mautrix-syncproxy)
|
- [mautrix-syncproxy and mautrix-wsproxy](./ressources/mautrix-syncproxy)
|
||||||
- [mautrix-whatsapp](./ressources/mautrix-whatsapp)
|
- [mautrix-whatsapp](./ressources/mautrix-whatsapp)
|
||||||
- [mailhog](./ressources/mailhog)
|
- [mailhog](./ressources/mailhog)
|
||||||
|
|
|
@ -23,6 +23,10 @@ get_git_source(){
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
configure_depot_lgy(){
|
||||||
|
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||||
|
}
|
||||||
|
|
||||||
configure_depot_erlang_rabbitmq(){
|
configure_depot_erlang_rabbitmq(){
|
||||||
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/erlang-rabbitmq.gpg] https://ppa1.rabbitmq.com/rabbitmq/rabbitmq-erlang/deb/debian bookworm main" > /etc/apt/sources.list.d/erlang.list
|
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/erlang-rabbitmq.gpg] https://ppa1.rabbitmq.com/rabbitmq/rabbitmq-erlang/deb/debian bookworm main" > /etc/apt/sources.list.d/erlang.list
|
||||||
wget -qO - "https://github.com/rabbitmq/signing-keys/releases/download/3.0/cloudsmith.rabbitmq-erlang.E495BB49CC4BBE5B.key" | gpg --dearmor > /usr/share/keyrings/erlang-rabbitmq.gpg
|
wget -qO - "https://github.com/rabbitmq/signing-keys/releases/download/3.0/cloudsmith.rabbitmq-erlang.E495BB49CC4BBE5B.key" | gpg --dearmor > /usr/share/keyrings/erlang-rabbitmq.gpg
|
||||||
|
|
|
@ -3,6 +3,6 @@ Version: %VERSION%
|
||||||
Section: contrib
|
Section: contrib
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: inotify-tools, erlang-base, erlang-syntax-tools, erlang-xmerl
|
Depends: inotify-tools, erlang-base, erlang-syntax-tools, erlang-xmerl, ghostscript >= 9 , libreoffice >=24
|
||||||
Maintainer: Thomas Legay <thomas@lgy.fr>
|
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||||
Description: claper
|
Description: claper
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
#### firebirdfdw
|
||||||
|
|
||||||
|
##### Information
|
||||||
|
Source : https://github.com/ibarwick/firebird_fdw
|
||||||
|
|
||||||
|
##### Install
|
||||||
|
|
||||||
|
```bash
|
||||||
|
apt install -y wget ca-certificates
|
||||||
|
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y firebirdfdw
|
||||||
|
```
|
|
@ -0,0 +1,31 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
VERSION=1.4.0
|
||||||
|
APP=firebirdfdw
|
||||||
|
DEPOT=https://github.com/ibarwick/firebird_fdw.git
|
||||||
|
GIT_VERSION=${VERSION}
|
||||||
|
DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M)
|
||||||
|
DEBIAN_VERSION_CODENAME=bookworm
|
||||||
|
IMAGE_SIZE=4
|
||||||
|
PACKAGE_DEPENDENCY="build-essential autoconf make postgresql-server-dev-all postgresql firebird-dev libpq-dev libfq"
|
||||||
|
|
||||||
|
main(){
|
||||||
|
configure_depot_lgy
|
||||||
|
base_package_upgrade
|
||||||
|
install_package_dependency
|
||||||
|
get_git_source
|
||||||
|
build
|
||||||
|
makedeb
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd /tmp/${APP}
|
||||||
|
make install DESTDIR=/tmp/src/rootfs
|
||||||
|
}
|
||||||
|
|
||||||
|
makedeb(){
|
||||||
|
PATH_DEB=/tmp/src/rootfs
|
||||||
|
|
||||||
|
sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control
|
||||||
|
fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
Package: firebirdfdw
|
||||||
|
Version: %VERSION%
|
||||||
|
Section: contrib
|
||||||
|
Priority: optional
|
||||||
|
Depends: postgresql
|
||||||
|
Architecture: all
|
||||||
|
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||||
|
Description: firebirdfdw
|
|
@ -0,0 +1,16 @@
|
||||||
|
#### roundcubemail
|
||||||
|
|
||||||
|
##### Information
|
||||||
|
Site : https://www.humhub.com/en/
|
||||||
|
|
||||||
|
Source : https://github.com/humhub/humhub
|
||||||
|
|
||||||
|
##### Install
|
||||||
|
|
||||||
|
```bash
|
||||||
|
apt install -y wget ca-certificates
|
||||||
|
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||||
|
apt-get update
|
||||||
|
apt install humhub
|
||||||
|
|
||||||
|
```
|
|
@ -0,0 +1,46 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
VERSION=1.16.2
|
||||||
|
APP=humhub
|
||||||
|
DEPOT=https://github.com/humhub/humhub.git
|
||||||
|
GIT_VERSION=v${VERSION}
|
||||||
|
DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M)
|
||||||
|
DEBIAN_VERSION_CODENAME=bookworm
|
||||||
|
IMAGE_SIZE=4
|
||||||
|
PACKAGE_DEPENDENCY="composer php-curl php-ldap php-xml php-dom php-zip php-gd unzip npm grunt"
|
||||||
|
|
||||||
|
main(){
|
||||||
|
base_package_upgrade
|
||||||
|
install_package_dependency
|
||||||
|
get_git_source
|
||||||
|
build
|
||||||
|
makedeb
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd /tmp/${APP}
|
||||||
|
export COMPOSER_ALLOW_SUPERUSER=1
|
||||||
|
composer install --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
|
||||||
|
npm install
|
||||||
|
grunt build-assets
|
||||||
|
}
|
||||||
|
|
||||||
|
makedeb(){
|
||||||
|
PATH_DEB=/tmp/src/rootfs
|
||||||
|
|
||||||
|
mkdir -p ${PATH_DEB}/usr/share/
|
||||||
|
mkdir -p ${PATH_DEB}/var/lib/${APP}/protected
|
||||||
|
|
||||||
|
cp -fr /tmp/${APP} ${PATH_DEB}/usr/share/
|
||||||
|
mv ${PATH_DEB}/usr/share/${APP}/{assets,uploads} ${PATH_DEB}/var/lib/${APP}/
|
||||||
|
|
||||||
|
mv ${PATH_DEB}/usr/share/${APP}/protected/{config,modules,runtime} ${PATH_DEB}/var/lib/${APP}/protected
|
||||||
|
ln -s /var/lib/${APP}/assets ${PATH_DEB}/usr/share/${APP}/assets
|
||||||
|
ln -s /var/lib/${APP}/protected/config ${PATH_DEB}/usr/share/${APP}/protected/config
|
||||||
|
ln -s /var/lib/${APP}/protected/modules ${PATH_DEB}/usr/share/${APP}/protected/modules
|
||||||
|
ln -s /var/lib/${APP}/protected/runtime ${PATH_DEB}/usr/share/${APP}/protected/runtime
|
||||||
|
ln -s /var/lib/${APP}/uploads ${PATH_DEB}/usr/share/${APP}/uploads
|
||||||
|
|
||||||
|
sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control
|
||||||
|
fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
Package: humhub
|
||||||
|
Version: %VERSION%
|
||||||
|
Section: contrib
|
||||||
|
Priority: optional
|
||||||
|
Architecture: all
|
||||||
|
Depends: php, php-cli, php-imagick, php-curl, php-bz2, php-gd, php-intl, php-mbstring, php-mysql, php-zip, php-apcu, php-xml, php-ldap
|
||||||
|
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||||
|
Description: humhub
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/bash
|
||||||
|
chown -R www-data:www-data /var/lib/humhub/
|
|
@ -0,0 +1,14 @@
|
||||||
|
#### libfq
|
||||||
|
|
||||||
|
##### Information
|
||||||
|
|
||||||
|
Source : https://github.com/ibarwick/libfq
|
||||||
|
|
||||||
|
##### Install
|
||||||
|
|
||||||
|
```bash
|
||||||
|
apt install -y wget ca-certificates
|
||||||
|
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y libfq
|
||||||
|
```
|
|
@ -0,0 +1,31 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
VERSION=0.6.1
|
||||||
|
APP=libfq
|
||||||
|
DEPOT=https://github.com/ibarwick/libfq.git
|
||||||
|
GIT_VERSION=${VERSION}
|
||||||
|
DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M)
|
||||||
|
DEBIAN_VERSION_CODENAME=bookworm
|
||||||
|
IMAGE_SIZE=4
|
||||||
|
PACKAGE_DEPENDENCY="build-essential firebird-dev"
|
||||||
|
|
||||||
|
main(){
|
||||||
|
base_package_upgrade
|
||||||
|
install_package_dependency
|
||||||
|
get_git_source
|
||||||
|
build
|
||||||
|
makedeb
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd /tmp/${APP}
|
||||||
|
./configure --prefix=/tmp/src/rootfs/usr
|
||||||
|
make install
|
||||||
|
}
|
||||||
|
|
||||||
|
makedeb(){
|
||||||
|
PATH_DEB=/tmp/src/rootfs
|
||||||
|
|
||||||
|
sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control
|
||||||
|
fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
Package: libfq
|
||||||
|
Version: %VERSION%
|
||||||
|
Section: contrib
|
||||||
|
Priority: optional
|
||||||
|
Architecture: all
|
||||||
|
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||||
|
Description: libfq
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=2_9_1
|
VERSION=2_9_2
|
||||||
APP=mysqlfdw
|
APP=mysqlfdw
|
||||||
DEPOT=https://github.com/EnterpriseDB/mysql_fdw.git
|
DEPOT=https://github.com/EnterpriseDB/mysql_fdw.git
|
||||||
GIT_VERSION=REL-${VERSION}
|
GIT_VERSION=REL-${VERSION}
|
||||||
|
|
|
@ -10,6 +10,7 @@ IMAGE_SIZE=2
|
||||||
PACKAGE_DEPENDENCY="php-simplexml php-curl php-zip php-cli"
|
PACKAGE_DEPENDENCY="php-simplexml php-curl php-zip php-cli"
|
||||||
|
|
||||||
main(){
|
main(){
|
||||||
|
configure_depot_yarn
|
||||||
base_package_upgrade
|
base_package_upgrade
|
||||||
install_package_dependency
|
install_package_dependency
|
||||||
default_prebuild
|
default_prebuild
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
APP=rustdesk-server
|
APP=rustdesk-server
|
||||||
VERSION=1.1.11-1
|
VERSION=1.1.12
|
||||||
GIT_VERSION=$VERSION
|
GIT_VERSION=$VERSION
|
||||||
DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M)
|
DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M)
|
||||||
DEBIAN_VERSION_CODENAME=bookworm
|
DEBIAN_VERSION_CODENAME=bookworm
|
||||||
|
|
Loading…
Reference in New Issue