summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD5
2 files changed, 8 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e7a949291e66..84645d3758fd 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,14 @@
pkgbase = sftpgo-bin
pkgdesc = Full featured and highly configurable SFTP server
pkgver = 0.9.3
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/drakkan/sftpgo
arch = x86_64
license = GPL3
depends = glibc
+ optdepends = sqlite: to use SQLite provider
+ optdepends = postgresql: to use PostgreSQL provider
+ optdepends = mariadb: to use MySQL provider
optdepends = python-requests: REST API CLI
optdepends = python-pygments: REST API CLI colors highlight
provides = sftpgo
diff --git a/PKGBUILD b/PKGBUILD
index c1d7e6c38ae9..10c2941fbe66 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,13 +3,16 @@
pkgname=sftpgo-bin
_pkgname=sftpgo
pkgver=0.9.3
-pkgrel=1
+pkgrel=2
pkgdesc='Full featured and highly configurable SFTP server'
arch=('x86_64')
url="https://github.com/drakkan/${_pkgname}"
license=('GPL3')
depends=('glibc')
optdepends=(
+ "sqlite: to use SQLite provider"
+ "postgresql: to use PostgreSQL provider"
+ "mariadb: to use MySQL provider"
"python-requests: REST API CLI"
"python-pygments: REST API CLI colors highlight"
)