wok view vfsync/receipt @ rev 20406

asterisk: add code2 & opus codec
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jul 20 23:12:02 2018 +0200 (2018-07-20)
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 }