wok annotate slang/receipt @ rev 7872

Up: fotoxx to 11.01.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Jan 02 19:59:01 2011 +0000 (2011-01-02)
parents 39784a334c7c
children a10cf58df5b7
rev   line source
erjo@506 1 # SliTaz package receipt.
erjo@506 2
erjo@506 3 PACKAGE="slang"
devl547@5519 4 VERSION="2.2.2"
erjo@506 5 CATEGORY="development"
erjo@506 6 SHORT_DESC="S-Lang library"
erjo@784 7 MAINTAINER="erjo@slitaz.org"
pankso@3364 8 DEPENDS="pcre libpng zlib"
erjo@506 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@506 10 WEB_SITE="http://www.s-lang.org/index.html"
devl547@5519 11 WGET_URL="ftp://ftp.fu-berlin.de/pub/unix/misc/slang/v2.2/$TARBALL
devl547@5519 12 ftp://space.mit.edu/pub/davis/slang/v2.2/$TARBALL"
erjo@506 13
erjo@506 14 # Rules to configure and make the package.
erjo@506 15 compile_rules()
erjo@506 16 {
erjo@506 17 cd $src
pascal@2441 18 ./configure --prefix=/usr $CONFIGURE_ARGS &&
erjo@506 19 make && \
erjo@506 20 make elf && \
pascal@2441 21 make static &&
erjo@506 22 make DESTDIR=$PWD/_pkg install install-static
erjo@506 23 }
erjo@506 24
erjo@506 25 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@506 26 genpkg_rules()
erjo@506 27 {
erjo@506 28 mkdir -p $fs/usr
erjo@506 29 cp -a $_pkg/usr/bin $fs/usr
erjo@506 30 cp -a $_pkg/usr/lib $fs/usr
erjo@506 31 strip -s $fs/usr/bin/*
erjo@506 32 }
erjo@506 33