1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 21:22:40 +00:00

Fix errors in Arch config file

This commit is contained in:
J. King 2021-05-17 15:47:26 -04:00
parent 3eab5aad5d
commit e2b182ebe6
3 changed files with 7 additions and 6 deletions

7
dist/arch/PKGBUILD vendored
View file

@ -1,4 +1,3 @@
_repopath=`dirname $(dirname $(pwd))`
pkgname="arsse" pkgname="arsse"
pkgver=0.9.1.r10.7abdf05 pkgver=0.9.1.r10.7abdf05
pkgrel=1 pkgrel=1
@ -11,7 +10,9 @@ groups=()
depends=() depends=()
makedepends=("git" "php" "php-intl" "composer") makedepends=("git" "php" "php-intl" "composer")
checkdepends=() checkdepends=()
optdepends=("php-pgsql: PostgreSQL database support") optdepends=("php-pgsql: PostgreSQL database support"
"nginx: HTTP server"
"apache: HTTP server")
provides=() provides=()
conflicts=() conflicts=()
replaces=() replaces=()
@ -19,7 +20,7 @@ backup=("etc/webapps/arsse/config.php" "etc/php/php-fpm.d/arsse.conf")
options=() options=()
install= install=
changelog= changelog=
source=("git+file://$_repopath") source=("git+file://$(dirname $(dirname $(pwd)))")
noextract=() noextract=()
md5sums=("SKIP") md5sums=("SKIP")

View file

@ -4,5 +4,5 @@
# for possible configuration parameters # for possible configuration parameters
return [ return [
'dbSQLiteFile' => "/usr/lib/arsse/arsse.db", 'dbSQLite3File' => "/var/lib/arsse/arsse.db",
]; ];

View file

@ -1,4 +1,4 @@
root /usr/share/webapps/arsse/www; # adjust according to your installation path root /usr/share/webapps/arsse/www;
location @arsse { location @arsse {
# HTTP authentication may be enabled for this location, though this may impact some features # HTTP authentication may be enabled for this location, though this may impact some features