diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-06-25 00:29:06 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-06-25 02:42:48 +0200 |
commit | ae8f222e196e992f376395f6bdb1d6581fb6c863 (patch) | |
tree | d7520e0fcd2f9e1cdf32010aa51034c3e3963658 /community | |
parent | 02ef2ba922837b8b333174855755aa44c049fea0 (diff) | |
download | aports-ae8f222e196e992f376395f6bdb1d6581fb6c863.tar.bz2 aports-ae8f222e196e992f376395f6bdb1d6581fb6c863.tar.xz |
community/nextcloud: remove -doc subpackage
This documentation is part of the application, it's referenced in the
NextCloud's web interface. Moreover NextCloud has some files consistency
check that doesn't like when the documentation is missing.
Diffstat (limited to 'community')
-rw-r--r-- | community/nextcloud/APKBUILD | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/community/nextcloud/APKBUILD b/community/nextcloud/APKBUILD index 79c76a5a27..693dcdddc4 100644 --- a/community/nextcloud/APKBUILD +++ b/community/nextcloud/APKBUILD @@ -14,7 +14,7 @@ _apps="-activity -encryption -firstrunwizard -gallery -ldap -logreader -mysql -notifications -password_policy -pdfviewer -pgsql -sqlite -texteditor -videoplayer" install="$pkgname.pre-install $pkgname.pre-upgrade $pkgname.post-upgrade" -subpackages="$pkgname-doc $pkgname-initscript ${_apps//-/$pkgname-}" +subpackages="$pkgname-initscript ${_apps//-/$pkgname-}" source="https://download.nextcloud.com/server/releases/$pkgname-$pkgver.zip nextcloud10-dont-chmod-config.patch dont-update-htaccess.patch @@ -68,9 +68,6 @@ package() { install -m644 -D "$srcdir"/$pkgname.logrotate ./etc/logrotate.d/$pkgname install -m775 -o nextcloud -g www-data -d ./var/log/$pkgname - mkdir -p ./usr/share/doc/$pkgname - mv ./$wwwdir/core/doc ./usr/share/doc/$pkgname/core - # Clean some unnecessary files. find . -name .gitignore -delete \ -o -name .bower.json -delete \ |