wok-next annotate vfsync/receipt @ rev 20453

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