add cache and log folders
This commit is contained in:
parent
64b6600f8b
commit
5bcfe360cd
2 changed files with 9 additions and 8 deletions
4
.SRCINFO
4
.SRCINFO
|
@ -1,6 +1,6 @@
|
||||||
pkgbase = roundcubemail-git
|
pkgbase = roundcubemail-git
|
||||||
pkgdesc = A PHP web-based mail client
|
pkgdesc = A PHP web-based mail client
|
||||||
pkgver = 1.4.beta.r108.g802ed0dc6
|
pkgver = 1.4.beta.r117.g224dd78ad
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://roundcube.net/
|
url = https://roundcube.net/
|
||||||
arch = any
|
arch = any
|
||||||
|
@ -16,10 +16,8 @@ pkgbase = roundcubemail-git
|
||||||
backup = etc/webapps/roundcubemail/apache.conf
|
backup = etc/webapps/roundcubemail/apache.conf
|
||||||
source = git+https://github.com/roundcube/roundcubemail.git
|
source = git+https://github.com/roundcube/roundcubemail.git
|
||||||
source = apache.conf
|
source = apache.conf
|
||||||
source = roundcubemail.tmpfiles
|
|
||||||
sha256sums = SKIP
|
sha256sums = SKIP
|
||||||
sha256sums = c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0
|
sha256sums = c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0
|
||||||
sha256sums = b0baf067cd6c09938991890ab8c87ba4bad06987781c5accbed86b95e35c2a56
|
|
||||||
|
|
||||||
pkgname = roundcubemail-git
|
pkgname = roundcubemail-git
|
||||||
|
|
||||||
|
|
13
PKGBUILD
13
PKGBUILD
|
@ -2,7 +2,7 @@
|
||||||
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||||||
|
|
||||||
pkgname=roundcubemail-git
|
pkgname=roundcubemail-git
|
||||||
pkgver=1.4.beta.r108.g802ed0dc6
|
pkgver=1.4.beta.r117.g224dd78ad
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="A PHP web-based mail client"
|
pkgdesc="A PHP web-based mail client"
|
||||||
arch=('any')
|
arch=('any')
|
||||||
|
@ -16,11 +16,9 @@ conflicts=('roundcubemail')
|
||||||
backup=('etc/webapps/roundcubemail/.htaccess'
|
backup=('etc/webapps/roundcubemail/.htaccess'
|
||||||
'etc/webapps/roundcubemail/apache.conf')
|
'etc/webapps/roundcubemail/apache.conf')
|
||||||
source=("git+https://github.com/roundcube/roundcubemail.git"
|
source=("git+https://github.com/roundcube/roundcubemail.git"
|
||||||
"apache.conf"
|
"apache.conf")
|
||||||
"roundcubemail.tmpfiles")
|
|
||||||
sha256sums=('SKIP'
|
sha256sums=('SKIP'
|
||||||
'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0'
|
'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
|
||||||
'b0baf067cd6c09938991890ab8c87ba4bad06987781c5accbed86b95e35c2a56')
|
|
||||||
|
|
||||||
pkgver() {
|
pkgver() {
|
||||||
cd "roundcubemail"
|
cd "roundcubemail"
|
||||||
|
@ -70,6 +68,11 @@ package() {
|
||||||
ln -s /etc/webapps/roundcubemail/config config
|
ln -s /etc/webapps/roundcubemail/config config
|
||||||
|
|
||||||
install -Dm0644 "$srcdir"/apache.conf "$pkgdir"/etc/webapps/roundcubemail/apache.conf
|
install -Dm0644 "$srcdir"/apache.conf "$pkgdir"/etc/webapps/roundcubemail/apache.conf
|
||||||
|
chown http:http "$pkgdir"/etc/webapps/roundcubemail/config/config.inc.php.sample
|
||||||
|
chmod 0640 "$pkgdir"/etc/webapps/roundcubemail/config/config.inc.php.sample
|
||||||
|
|
||||||
|
install -dm0750 -o http -g http "$pkgdir"/var/cache/roundcubemail
|
||||||
|
install -dm0750 -o http -g http "$pkgdir"/var/log/roundcubemail
|
||||||
|
|
||||||
rm -rf temp logs
|
rm -rf temp logs
|
||||||
find "$pkgdir" -name .git -exec rm -rf {} \; || true
|
find "$pkgdir" -name .git -exec rm -rf {} \; || true
|
||||||
|
|
Loading…
Reference in a new issue