summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorVladislav2023-06-30 09:01:07 +0300
committerVladislav2023-06-30 09:01:07 +0300
commitddf35e3275a300d5802576a8b1058904d778e1da (patch)
treed44974a0e044086e89ec355f08e1f9c3c5916a39
parentde2fdc28989dd167f77415b3116f429603bf7d03 (diff)
downloadaur-ddf35e3275a300d5802576a8b1058904d778e1da.tar.gz
fix pkgbuild
-rw-r--r--.SRCINFO7
-rw-r--r--PKGBUILD9
2 files changed, 11 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d2842c663137..8b0459b56d20 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,14 +1,15 @@
pkgbase = onlyoffice-documentserver-bin
pkgdesc = Online office suite comprising viewers and editors for texts, spreadsheets and presentations
pkgver = 7.4.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/ONLYOFFICE/DocumentServer
install = onlyoffice-documentserver.install
arch = x86_64
license = AGPL
depends = rabbitmq
- depends = postgresql
- depends = nginx
+ optdepends = postgresql: PostgreSQL database
+ optdepends = mariadb: MariaDB database
+ optdepends = nginx: reverse-proxy
conflicts = onlyoffice-documentserver
options = !strip
backup = etc/webapps/onlyoffice/documentserver/production-linux.json
diff --git a/PKGBUILD b/PKGBUILD
index 3d23216ef300..e032e61d1798 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,11 +6,16 @@
pkgname=onlyoffice-documentserver-bin
pkgver=7.4.0
-pkgrel=1
+pkgrel=2
pkgdesc="Online office suite comprising viewers and editors for texts, spreadsheets and presentations"
arch=('x86_64')
url="https://github.com/ONLYOFFICE/DocumentServer"
-depends=('rabbitmq' 'postgresql' 'nginx')
+depends=('rabbitmq')
+optdepends=(
+'postgresql: PostgreSQL database'
+'mariadb: MariaDB database'
+'nginx: reverse-proxy'
+)
conflicts=('onlyoffice-documentserver')
license=('AGPL')
source=("https://github.com/ONLYOFFICE/DocumentServer/releases/download/v${pkgver}/onlyoffice-documentserver.x86_64.rpm"