wok view owncloud-client/receipt @ rev 20235

busybox: add arch (uname -m alias)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 05 15:52:59 2018 +0100 (2018-03-05)
parents 9fca00a1918e
children 7c0170dd3ecc
line source
1 # SliTaz package receipt.
3 PACKAGE="owncloud-client"
4 VERSION="1.0.5"
5 CATEGORY="network"
6 SHORT_DESC="The ownCloud Client, based on Mirall"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://owncloud.org/sync-clients/"
10 SOURCE="mirall"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WGET_URL="http://download.owncloud.com/download/$TARBALL"
14 DEPENDS="csync libQtTest libQtNetwork libQtCore libQtXml libQtGui"
15 BUILD_DEPENDS="csync-dev Qt4-dev cmake qmake"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 mkdir mirall-build && cd mirall-build
20 cmake -DCMAKE_INSTALL_PREFIX=/usr .. \
21 && make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 cp -a $install/* $fs/
29 }