2014-02-17 13:40:23 +01:00
|
|
|
# Maintainer: Philipp Schmitt (philipp<at>schmitt<dot>co)
|
|
|
|
|
|
|
|
pkgname=wallabag
|
2016-11-20 12:18:52 +01:00
|
|
|
pkgver=2.1.4
|
2016-06-07 13:21:07 +02:00
|
|
|
pkgrel=1
|
2014-02-17 13:40:23 +01:00
|
|
|
pkgdesc='Self hostable application for saving web pages'
|
2014-02-19 16:33:35 +01:00
|
|
|
arch=('any')
|
2014-02-17 13:40:23 +01:00
|
|
|
url='http://www.wallabag.org/'
|
2014-12-17 19:46:24 +01:00
|
|
|
license=('MIT')
|
2016-05-07 00:53:32 +02:00
|
|
|
depends=(
|
|
|
|
'php>=5.3.3'
|
|
|
|
'php-gd'
|
|
|
|
'php-tidy'
|
|
|
|
'pcre'
|
|
|
|
)
|
|
|
|
optdepends=(
|
|
|
|
'php-pgsql: For postgres storage'
|
|
|
|
'php-sqlite: For sqlite storage'
|
2016-10-19 16:35:09 +02:00
|
|
|
'rabbitmq: For async import'
|
|
|
|
'redis: For async import'
|
2016-05-07 00:53:32 +02:00
|
|
|
)
|
2014-02-17 13:40:23 +01:00
|
|
|
install="$pkgname.install"
|
2014-02-19 16:33:35 +01:00
|
|
|
options=(!strip)
|
2016-11-20 12:18:52 +01:00
|
|
|
source=("https://framabag.org/wallabag-release-${pkgver}.tar.gz")
|
|
|
|
#source=("${pkgname}-release-${pkgver}.tar.gz::http://wllbg.org/latest-v2-package") # you may try this URL, if the above one is not available
|
|
|
|
sha256sums=('eb64205a4d7c161527edd08bed22e8dd9799fe8a4130c5964c18cba3a94c9768')
|
2016-05-07 00:53:32 +02:00
|
|
|
backup=("etc/webapps/${pkgname}/parameters.yml"
|
2016-10-19 15:35:20 +02:00
|
|
|
"usr/share/webapps/${pkgname}/parameters.yml"
|
|
|
|
"var/lib/${pkgname}/data/db/wallabag.sqlite"
|
|
|
|
"usr/share/webapps/${pkgname}/data/db/wallabag.sqlite")
|
2014-02-17 13:40:23 +01:00
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${pkgdir}"
|
|
|
|
mkdir -p usr/share/webapps
|
2016-05-07 00:53:32 +02:00
|
|
|
mv "${srcdir}/release-${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}"/
|
|
|
|
|
2016-10-19 15:35:20 +02:00
|
|
|
_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"
|
|
|
|
|
|
|
|
chown -R http:http "${pkgdir}/usr/share/webapps/${pkgname}"
|
2014-02-17 13:40:23 +01:00
|
|
|
}
|