wok annotate erlang/receipt @ rev 2134

Add erlang
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 03 11:36:12 2009 +0000 (2009-02-03)
parents
children 315bb0da905d
rev   line source
pascal@2134 1 # SliTaz package receipt.
pascal@2134 2
pascal@2134 3 PACKAGE="erlang"
pascal@2134 4 VERSION="R12B-5"
pascal@2134 5 CATEGORY="development"
pascal@2134 6 SHORT_DESC="Erlang programming language."
pascal@2134 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@2134 8 SOURCE="otp_src"
pascal@2134 9 TARBALL="${SOURCE}_$VERSION.tar.gz"
pascal@2134 10 WEB_SITE="http://$PACKAGE.org/"
pascal@2134 11 WGET_URL="${WEB_SITE}download/$TARBALL"
pascal@2134 12 BUILD_DEPENDS="perl ncurses-dev openssl-dev xorg-dev flex"
pascal@2134 13
pascal@2134 14 # Rules to configure and make the package.
pascal@2134 15 compile_rules()
pascal@2134 16 {
pascal@2134 17 patch=${SOURCE}_${VERSION}_OTP-7738.patch
pascal@2134 18 /home/slitaz/wok/erlang/otp_src-R12B-5
pascal@2134 19 mv ${SOURCE}_$VERSION $src
pascal@2134 20 cd $src
pascal@2134 21 if [ -f $patch ]; then
pascal@2134 22 wget http://www.erlang.org/download/patches/$patch
pascal@2134 23 patch -p1 < $patch
pascal@2134 24 fi
pascal@2134 25 export LANG=C
pascal@2134 26 sed -i 's|./Install|sh -x ./Install|' Makefile*
pascal@2134 27 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@2134 28 --sysconfdir=/etc --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@2134 29 make &&
pascal@2134 30 make INSTALL_PREFIX=$PWD/_pkg install
pascal@2134 31 }
pascal@2134 32
pascal@2134 33 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2134 34 genpkg_rules()
pascal@2134 35 {
pascal@2134 36 cp -a $_pkg/usr $fs
pascal@2134 37 }
pascal@2134 38