wok view vfsync/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents
children 453c249b6219
line source
1 # SliTaz package receipt.
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://vfsync.org/"
11 WGET_URL="${WEB_SITE}$TARBALL"
13 DEPENDS="libssl libcurl"
14 BUILD_DEPENDS="openssl-dev curl-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 make
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin $install/usr/share/doc
26 cp -a $src/vfagent $fs/usr/bin
27 cp -a $src/vfsync $fs/usr/bin
28 cp -a $src/readme.txt $install/usr/share/doc
29 }