wok-stable view sdcc/receipt @ rev 11804

sdcc: fix cmdlex.cc
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 25 14:56:17 2012 +0100 (2012-02-25)
parents 7a6c21322e85
children 12111dbc2113
line source
1 # SliTaz package receipt.
3 PACKAGE="sdcc"
4 VERSION="2.9.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"
12 BUILD_DEPENDS="flex"
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 '1i\#include <stdio.h>' sim/ucsim/cmd.src/cmdlex.cc
20 sed -i 's/all %/%/' device/lib/pic/Makefile.in
21 find -name getline.h | xargs sed -i \
22 's/char.*getline/#define getline sdcc_getline\nchar *sdcc_getline/'
23 ./configure --prefix=/usr --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $_pkg/usr $fs
34 }