wok view sdcc/receipt @ rev 13730

Up sdcc (3.2.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 22 17:18:47 2012 +0100 (2012-12-22)
parents 67e53666144c
children 18f9cd000cd5
line source
1 # SliTaz package receipt.
3 PACKAGE="sdcc"
4 VERSION="3.2.0"
5 CATEGORY="development"
6 SHORT_DESC="Retargettable C compiler for 8051, Z80 and 68HC08."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-src-$VERSION.tar.bz2"
9 WEB_SITE="http://sdcc.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$PACKAGE/$VERSION/$TARBALL"
11 TAGS="cross compiler C 8051 Z80 68HC08 assembler"
12 BUILD_DEPENDS="flex gcc3 libboost-graph-dev gputils"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 mv $PACKAGE $src 2> /dev/null
18 cd $src
19 sed -i 's/exec/[ "$1" == ":" ] || &/' device/lib/pic16/depcomp
20 sed -i 's/ -u$//' device/lib/Makefile*
22 # build hang forever with gcc 4.6.3 for SDCCicode.c
23 ./configure CC=gcc-3 --prefix=/usr --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $install/usr $fs
34 }