wok annotate unison/receipt @ rev 17112
tzdata: up (2014g).
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Sep 02 00:45:04 2014 +0300 (2014-09-02) |
parents | f0df0a15bf50 |
children | fd0c35ec6c9c |
rev | line source |
---|---|
pascal@3998 | 1 # SliTaz package receipt. |
pascal@3998 | 2 |
pascal@3998 | 3 PACKAGE="unison" |
pascal@15107 | 4 VERSION="2.40.102" |
pascal@3998 | 5 CATEGORY="system-tools" |
pascal@3998 | 6 SHORT_DESC="File-synchronization tool." |
pascal@3998 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15601 | 8 LICENSE="GPL3" |
pascal@3998 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@3998 | 10 WEB_SITE="http://www.cis.upenn.edu/~bcpierce/unison" |
pascal@3998 | 11 WGET_URL="http://www.seas.upenn.edu/~bcpierce/unison/download/releases/stable/$TARBALL" |
pascal@3998 | 12 BUILD_DEPENDS="ocaml emacs" |
jozee@4974 | 13 TAGS="sync" |
pascal@3998 | 14 |
pascal@3998 | 15 # Rules to configure and make the package. |
pascal@3998 | 16 compile_rules() |
pascal@3998 | 17 { |
pascal@3998 | 18 cd $src |
pascal@9553 | 19 CFLAGS="" make UISTYLE=text |
pascal@3998 | 20 } |
pascal@3998 | 21 |
pascal@3998 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@3998 | 23 genpkg_rules() |
pascal@3998 | 24 { |
pascal@3998 | 25 mkdir -p $fs/usr/bin |
pascal@3998 | 26 cp -a $src/unison $fs/usr/bin |
pascal@3998 | 27 } |
pascal@3998 | 28 |