wok annotate sdcc/receipt @ rev 13795

blender: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jan 05 13:26:25 2013 +0100 (2013-01-05)
parents c4289b5fcf5d
children 7896f0694ef6
rev   line source
pascal@11212 1 # SliTaz package receipt.
pascal@11212 2
pascal@11212 3 PACKAGE="sdcc"
pascal@13730 4 VERSION="3.2.0"
pascal@11212 5 CATEGORY="development"
pascal@11212 6 SHORT_DESC="Retargettable C compiler for 8051, Z80 and 68HC08."
pascal@11212 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@11212 8 TARBALL="$PACKAGE-src-$VERSION.tar.bz2"
pascal@11212 9 WEB_SITE="http://sdcc.sourceforge.net/"
pascal@11212 10 WGET_URL="$SF_MIRROR/$PACKAGE/$PACKAGE/$VERSION/$TARBALL"
pascal@13033 11 TAGS="cross compiler C 8051 Z80 68HC08 assembler"
pascal@13731 12 BUILD_DEPENDS="flex libboost-graph-dev gputils"
pascal@11212 13
pascal@11212 14 # Rules to configure and make the package.
pascal@11212 15 compile_rules()
pascal@11212 16 {
pascal@11212 17 cd $src
pascal@11806 18 sed -i 's/exec/[ "$1" == ":" ] || &/' device/lib/pic16/depcomp
pascal@11806 19 sed -i 's/ -u$//' device/lib/Makefile*
pascal@13037 20
pascal@13731 21 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@11212 22 --mandir=/usr/share/man \
pascal@11212 23 $CONFIGURE_ARGS &&
pascal@11212 24 make &&
pascal@13037 25 make DESTDIR=$DESTDIR install
pascal@11212 26 }
pascal@11212 27
pascal@11212 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11212 29 genpkg_rules()
pascal@11212 30 {
pascal@13730 31 cp -a $install/usr $fs
pascal@11212 32 }
pascal@11212 33