wok-next view sdcc/receipt @ rev 21427

updated qt4 (4.8.6 -> 4.8.7)
author Hans-G?nter Theisgen
date Tue May 05 08:11:24 2020 +0100 (2020-05-05)
parents a244e109372e
children 6a66c15a4531
line source
1 # SliTaz package receipt.
3 PACKAGE="sdcc"
4 VERSION="3.6.0"
5 CATEGORY="development"
6 SHORT_DESC="Retargettable C compiler for 8051, Z80 and 68HC08"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://sdcc.sourceforge.net/"
11 TARBALL="$PACKAGE-src-$VERSION.tar.bz2"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="flex boost-dev boost-graph gputils texinfo"
15 COOKOPTS="!strip"
17 compile_rules() {
18 #sed -i 's/exec/[ "$1" == ":" ] || &/' device/lib/pic16/depcomp
19 #sed -i 's/ -u$//' device/lib/Makefile*
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$install install
28 }
30 genpkg_rules() {
31 cp -a $install/usr $fs
32 TAGS="cross compiler C 8051 Z80 68HC08 assembler"
33 }