2018-11-05 15:31:04 +01:00
|
|
|
# Maintainer: Cedric Girard <cgirard [dot] archlinux [at] valinor [dot] fr>
|
|
|
|
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
|
|
|
|
|
|
pkgname=roundcubemail-git
|
2021-08-31 17:07:04 +02:00
|
|
|
pkgver=1.5rc.r105.g16c2a76fe
|
2020-12-08 11:25:19 +01:00
|
|
|
pkgrel=1
|
2018-11-05 15:31:04 +01:00
|
|
|
pkgdesc="A PHP web-based mail client"
|
|
|
|
arch=('any')
|
|
|
|
url="https://roundcube.net/"
|
|
|
|
license=('GPL')
|
|
|
|
depends=('php' 'php-gd')
|
2021-01-02 15:25:24 +01:00
|
|
|
makedepends=('systemd' 'composer' 'php-gd' 'git' 'unzip' 'java-runtime' 'nodejs-less-plugin-clean-css' 'uglify-js' 'nodejs-csso-cli')
|
2018-11-05 15:31:04 +01:00
|
|
|
provides=('roundcubemail')
|
|
|
|
conflicts=('roundcubemail')
|
|
|
|
backup=('etc/webapps/roundcubemail/.htaccess'
|
|
|
|
'etc/webapps/roundcubemail/apache.conf')
|
|
|
|
source=("git+https://github.com/roundcube/roundcubemail.git"
|
2018-11-08 10:35:05 +01:00
|
|
|
"apache.conf")
|
2018-11-05 15:31:04 +01:00
|
|
|
sha256sums=('SKIP'
|
2018-11-08 10:35:05 +01:00
|
|
|
'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
|
2018-11-05 15:31:04 +01:00
|
|
|
|
|
|
|
pkgver() {
|
|
|
|
cd "roundcubemail"
|
2021-07-12 16:08:19 +02:00
|
|
|
git describe --long --tags | sed 's/-\(alpha\|beta\|rc\)/\1/g;s/\([^-]*-g\)/r\1/;s/-/./g'
|
2018-11-05 15:31:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd "$srcdir"/roundcubemail
|
|
|
|
sed -i \
|
|
|
|
-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
|
|
|
|
-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
|
|
|
|
config/defaults.inc.php \
|
|
|
|
program/lib/Roundcube/rcube_config.php
|
|
|
|
|
|
|
|
sed -i 's!"dest": "program/js/tinymce"!"dest": "program/js/tinymce/langs"!' jsdeps.json
|
|
|
|
|
|
|
|
mv composer.json-dist composer.json
|
2020-01-17 06:23:46 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
build(){
|
2020-01-22 11:03:46 +01:00
|
|
|
cd "$srcdir"/roundcubemail
|
2021-07-12 16:08:19 +02:00
|
|
|
php -d extension=gd.so /usr/bin/composer install --no-dev --ignore-platform-req=ext-gd --ignore-platform-req=ext-iconv
|
2018-11-05 15:31:04 +01:00
|
|
|
bin/install-jsdeps.sh
|
|
|
|
bin/jsshrink.sh
|
|
|
|
|
|
|
|
cd skins/elastic
|
2020-10-12 12:08:39 +02:00
|
|
|
lessc --clean-css="--s1 --advanced" styles/styles.less > styles/styles.min.css
|
|
|
|
lessc --clean-css="--s1 --advanced" styles/print.less > styles/print.min.css
|
|
|
|
lessc --clean-css="--s1 --advanced" styles/embed.less > styles/embed.min.css
|
|
|
|
|
2018-11-05 15:31:04 +01:00
|
|
|
cd ../..
|
|
|
|
|
|
|
|
bin/updatecss.sh
|
|
|
|
bin/cssshrink.sh
|
2021-08-31 17:07:04 +02:00
|
|
|
|
|
|
|
rm -rf tests/ .tx/ .github/
|
2018-11-05 15:31:04 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
package() {
|
|
|
|
mkdir -p "$pkgdir"/etc/webapps/roundcubemail
|
|
|
|
mkdir -p "$pkgdir"/usr/share/webapps
|
|
|
|
cd "$pkgdir"/usr/share/webapps
|
|
|
|
cp -ra "$srcdir"/roundcubemail roundcubemail
|
|
|
|
cd roundcubemail
|
|
|
|
|
|
|
|
mv .htaccess "$pkgdir"/etc/webapps/roundcubemail/
|
|
|
|
ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
|
|
|
|
|
|
|
|
mv config "$pkgdir"/etc/webapps/roundcubemail/
|
|
|
|
ln -s /etc/webapps/roundcubemail/config config
|
|
|
|
|
|
|
|
install -Dm0644 "$srcdir"/apache.conf "$pkgdir"/etc/webapps/roundcubemail/apache.conf
|
2018-11-08 10:35:05 +01:00
|
|
|
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
|
2018-11-05 15:31:04 +01:00
|
|
|
|
|
|
|
rm -rf temp logs
|
|
|
|
find "$pkgdir" -name .git -exec rm -rf {} \; || true
|
|
|
|
|
|
|
|
# sed -i "s|"$srcdir"/roundcubemail/vendor/pear-pear.php.net/Console_CommandLine/data|/usr/share/webapps/roundcubemail/vendor/pear-pear.php.net|g" \
|
|
|
|
# vendor/pear-pear.php.net/Console_CommandLine/Console/CommandLine/XmlParser.php
|
|
|
|
|
|
|
|
# sed -i "s|"$srcdir"/roundcubemail|/usr/share/webapps/roundcubemail|g" \
|
|
|
|
# vendor/pear-pear.php.net/Crypt_GPG/bin/crypt-gpg-pinentry \
|
|
|
|
# vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/Engine.php \
|
|
|
|
# vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/PinEntry.php
|
|
|
|
}
|