wok-stable annotate unison/receipt @ rev 9364
Add lfs-book. This is the linux from scratch book. Its useful docs for my mirror/source iso.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun Mar 20 18:19:03 2011 +0000 (2011-03-20) |
parents | dbdd0768c3ab |
children | befd46df350e |
rev | line source |
---|---|
pascal@3998 | 1 # SliTaz package receipt. |
pascal@3998 | 2 |
pascal@3998 | 3 PACKAGE="unison" |
pascal@3998 | 4 VERSION="2.27.157" |
pascal@3998 | 5 CATEGORY="system-tools" |
pascal@3998 | 6 SHORT_DESC="File-synchronization tool." |
pascal@3998 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@3998 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@3998 | 9 WEB_SITE="http://www.cis.upenn.edu/~bcpierce/unison" |
pascal@3998 | 10 WGET_URL="http://www.seas.upenn.edu/~bcpierce/unison/download/releases/stable/$TARBALL" |
pascal@3998 | 11 BUILD_DEPENDS="ocaml emacs" |
jozee@4974 | 12 TAGS="sync" |
pascal@3998 | 13 |
pascal@3998 | 14 # Rules to configure and make the package. |
pascal@3998 | 15 compile_rules() |
pascal@3998 | 16 { |
pascal@3998 | 17 cd $src |
pascal@3998 | 18 make UISTYLE=text |
pascal@3998 | 19 } |
pascal@3998 | 20 |
pascal@3998 | 21 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@3998 | 22 genpkg_rules() |
pascal@3998 | 23 { |
pascal@3998 | 24 mkdir -p $fs/usr/bin |
pascal@3998 | 25 cp -a $src/unison $fs/usr/bin |
pascal@3998 | 26 } |
pascal@3998 | 27 |