wok-next view vfsync/receipt @ rev 20646

grub2-efi: ls module embedded
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 02 11:12:13 2018 +0200 (2018-05-02)
parents 94ab15b469ab
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="vfsync"
4 VERSION="2017-05-21"
5 CATEGORY="network"
6 SHORT_DESC="A secure file synchronization system"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://vfsync.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}$TARBALL"
14 BUILD_DEPENDS="openssl-dev curl-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 make &&
20 bindir=$install/usr/bin &&
21 docdir=$install/usr/share/doc/$PACKAGE-$VERSION &&
22 mkdir -p $bindir $docdir &&
23 cp -a vfagent vfsync $bindir &&
24 cp readme.txt $docdir
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 copy @std
31 DEPENDS="openssl libcurl"
32 }