summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicola Murino2019-10-20 09:00:07 +0200
committerNicola Murino2019-10-20 09:00:07 +0200
commitce1f249f4762f4ed16fb6d8aee466f31eed22c50 (patch)
tree94573859a8324feb218212758ecc8d78183f08d7
parent14029b37b92221a89af60cb85701924ea7c1aedf (diff)
downloadaur-ce1f249f4762f4ed16fb6d8aee466f31eed22c50.tar.gz
fix optdepends
-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"
)