wok view unison/receipt @ rev 25503

f3: include extra programs
author Hans-G?nter Theisgen
date Fri Jan 27 10:37:43 2023 +0100 (15 months ago)
parents 679126bfd419
children 0262035dc1e7
line source
1 # SliTaz package receipt.
3 PACKAGE="unison"
4 VERSION="2.52.1"
5 CATEGORY="system-tools"
6 TAGS="sync"
7 SHORT_DESC="File-synchronization tool."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL3"
10 WEB_SITE="https://www.cis.upenn.edu/~bcpierce/unison"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/bcpierce00/$PACKAGE/archive/v$VERSION.tar.gz"
15 BUILD_DEPENDS="ocaml emacs"
17 current_version()
18 {
19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q'
21 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 make CFLAGS="" UISTYLE=text
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/bin
35 cp -a $src/src/unison $fs/usr/bin
36 cp -a $src/src/unison-fsmonitor $fs/usr/bin
37 }