wok-current view ocaml/receipt @ rev 10918
udev: Use custom rules to have usb auto mount working
| author | Christophe Lincoln <pankso@slitaz.org> | 
|---|---|
| date | Wed Aug 03 21:46:06 2011 +0200 (2011-08-03) | 
| parents | 6ec17b55b59a | 
| children | ad0e3018d4fa | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="ocaml"
     4 VERSION="3.10.2"
     5 CATEGORY="system-tools"
     6 SHORT_DESC="General-purpose programming language designed for safety and reliability."
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 TARBALL="$PACKAGE-$VERSION.tar.gz"
     9 DEPENDS="xorg-libX11 xorg-libXau xorg-libXdmcp"
    10 WEB_SITE="http://caml.inria.fr/"
    11 WGET_URL="${WEB_SITE}pub/distrib/$PACKAGE-${VERSION%.*}/$TARBALL"
    12 TAGS="language programming"
    14 # Rules to configure and make the package.
    15 compile_rules()
    16 {
    17 	cd $src
    18 	grep -q true build/camlp4-targets.sh ||
    19 		sed -i 's/base=.*/& || true/' build/camlp4-targets.sh
    20 	./configure --prefix /usr \
    21 	$(echo $CONFIGURE_ARGS | sed 's/--build=[^ ]*//' | sed 's/=/ /g') &&
    22 	make -j1 world opt &&
    23 	sed -i "s|^PREFIX=.*|PREFIX=$PWD/_pkg/usr|" config/Makefile &&
    24 	make install
    25 }
    27 # Rules to gen a SliTaz package suitable for Tazpkg.
    28 genpkg_rules()
    29 {
    30 	mkdir -p $fs/usr
    31 	cp -a $_pkg/usr/bin $fs/usr
    32 	cp -a $_pkg/usr/lib $fs/usr
    33 }