wok view unison/receipt @ rev 21490

trickle: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 01 18:05:32 2019 +0200 (2019-05-01)
parents 23c3aed67cd9
children 73968a7f1da9
line source
1 # SliTaz package receipt.
3 PACKAGE="unison"
4 VERSION="2.48.3"
5 CATEGORY="system-tools"
6 SHORT_DESC="File-synchronization tool."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.cis.upenn.edu/~bcpierce/unison"
11 WGET_URL="http://www.seas.upenn.edu/~bcpierce/unison/download/releases/stable/$TARBALL"
12 BUILD_DEPENDS="ocaml emacs"
13 TAGS="sync"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 CFLAGS="" make UISTYLE=text unison
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/bin
25 cp -a $src/unison $fs/usr/bin
26 }