update
This commit is contained in:
parent
1705d59286
commit
6bc789087e
20 changed files with 57 additions and 31 deletions
23
ressources/tt-rss-plugin-auth-oidc/debmaker
Executable file
23
ressources/tt-rss-plugin-auth-oidc/debmaker
Executable file
|
@ -0,0 +1,23 @@
|
|||
#!/bin/bash
|
||||
|
||||
APP=tt-rss-plugin-auth-oidc
|
||||
GIT_VERSION=last
|
||||
DEB_VERSION=$(date +%Y%m%d%H%M)
|
||||
DEBIAN_VERSION_CODENAME=bookworm
|
||||
IMAGE_SIZE=1
|
||||
DEPOT=https://gitlab.tt-rss.org/tt-rss/plugins/ttrss-auth-oidc.git
|
||||
|
||||
main(){
|
||||
base_package_upgrade
|
||||
get_git_source
|
||||
makedeb
|
||||
}
|
||||
|
||||
makedeb(){
|
||||
PATH_DEB=/tmp/src/rootfs
|
||||
mkdir -p ${PATH_DEB}/usr/share/tt-rss/plugins/
|
||||
cp -fr /tmp/${APP} ${PATH_DEB}/usr/share/tt-rss/plugins/auth_oidc
|
||||
|
||||
sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control
|
||||
fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist
|
||||
}
|
8
ressources/tt-rss-plugin-auth-oidc/rootfs/DEBIAN/control
Normal file
8
ressources/tt-rss-plugin-auth-oidc/rootfs/DEBIAN/control
Normal file
|
@ -0,0 +1,8 @@
|
|||
Package: tt-rss-plugin-auth-oidc
|
||||
Version: %VERSION%
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: tt-rss, php-curl
|
||||
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||
Description: tt-rss-plugin-auth-oidc
|
Loading…
Add table
Add a link
Reference in a new issue