54 lines
1.8 KiB
Bash
54 lines
1.8 KiB
Bash
# Maintainer: Cedric Girard <cgirard [dot] archlinux [at] valinor [dot] fr>
|
|
# Contributor: Philipp Schmitt (philipp<at>schmitt<dot>co)
|
|
|
|
pkgname=wallabag
|
|
pkgver=2.4.1
|
|
pkgrel=1
|
|
pkgdesc='Self hostable application for saving web pages'
|
|
arch=('any')
|
|
url='http://www.wallabag.org/'
|
|
license=('MIT')
|
|
makedepends=('systemd')
|
|
depends=(
|
|
'php>=7.2'
|
|
'php-gd'
|
|
'php-tidy'
|
|
'pcre'
|
|
)
|
|
optdepends=(
|
|
'php-pgsql: For postgres storage'
|
|
'php-sqlite: For sqlite storage'
|
|
'rabbitmq: For async import'
|
|
'redis: For async import'
|
|
)
|
|
install="$pkgname.install"
|
|
options=(!strip)
|
|
source=("https://static.wallabag.org/releases/wallabag-release-${pkgver}.tar.gz")
|
|
sha256sums=('722620897e0e2f2fc769ac819e5c3527e9270d477576d194b35a4e63542c0eb7')
|
|
backup=("etc/webapps/${pkgname}/parameters.yml"
|
|
"usr/share/webapps/${pkgname}/parameters.yml"
|
|
"var/lib/${pkgname}/data/db/wallabag.sqlite"
|
|
"usr/share/webapps/${pkgname}/data/db/wallabag.sqlite")
|
|
|
|
package() {
|
|
cd "${pkgdir}"
|
|
mkdir -p usr/share/webapps
|
|
mv "${srcdir}/${pkgver}" "usr/share/webapps/${pkgname}"
|
|
|
|
WALLABAG_CONF_DIR="${pkgdir}/usr/share/webapps/${pkgname}/app/config"
|
|
|
|
install -d "${pkgdir}/etc/webapps/${pkgname}/"
|
|
mv "${WALLABAG_CONF_DIR}"/parameters.yml "${pkgdir}/etc/webapps/${pkgname}/"
|
|
chown -R http:http "${pkgdir}/etc/webapps/${pkgname}"
|
|
ln -s "/etc/webapps/${pkgname}/parameters.yml" "${WALLABAG_CONF_DIR}"/
|
|
|
|
_VAR_DIR="${pkgdir}/var/lib/${pkgname}/"
|
|
install -d "$_VAR_DIR"
|
|
mv "${pkgdir}/usr/share/webapps/${pkgname}/"{data,var} "$_VAR_DIR"
|
|
ln -s "/var/lib/${pkgname}/"{data,var} "${pkgdir}/usr/share/webapps/${pkgname}/"
|
|
chown -R http:http "$_VAR_DIR"
|
|
|
|
sed -i "${_VAR_DIR}/var/bootstrap.php.cache" -e "s@__DIR__.'/../@'/usr/share/webapps/${pkgname}/@"
|
|
|
|
chown -R http:http "${pkgdir}/usr/share/webapps/${pkgname}"
|
|
}
|