diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2017-02-28 07:57:57 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2017-02-28 07:58:09 +0000 |
commit | 3de9d8c1c2bf86f574dba5fff8914865297072ed (patch) | |
tree | 5637573b5d2269eb6e9513a8972418845676db6f /main/nextcloud | |
parent | 0369af615e97641cee449729a001136a3d6c576f (diff) | |
download | aports-3de9d8c1c2bf86f574dba5fff8914865297072ed.tar.bz2 aports-3de9d8c1c2bf86f574dba5fff8914865297072ed.tar.xz |
main/nextcloud: define check function
Diffstat (limited to 'main/nextcloud')
-rw-r--r-- | main/nextcloud/APKBUILD | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/main/nextcloud/APKBUILD b/main/nextcloud/APKBUILD index c704c94ad3..5c21d3f562 100644 --- a/main/nextcloud/APKBUILD +++ b/main/nextcloud/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Leonardo Arena <rnalrd@alpinelinux.org> pkgname=nextcloud pkgver=11.0.2 -pkgrel=0 +pkgrel=1 pkgdesc="A safe home for all your data" url="http://nextcloud.com" arch="noarch" @@ -47,6 +47,10 @@ build() { return 0 } +check() { + return 0 +} + package() { cd "$builddir" for dir in ${_ncconfdir} ${_ncdatadir} ${_ncwwwdir}; do |