wok-next view sdcc/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents 6a66c15a4531
children
line source
1 # SliTaz package receipt.
3 PACKAGE="sdcc"
4 VERSION="4.0.0"
5 CATEGORY="development"
6 TAGS="cross compiler C 8051 Z80 68HC08 assembler"
7 SHORT_DESC="Retargettable C compiler for 8051, Z80 and 68HC08"
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="http://sdcc.sourceforge.net/"
12 TARBALL="$PACKAGE-src-$VERSION.tar.bz2"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 BUILD_DEPENDS="boost-dev boost-graph flex gputils texinfo zlib-dev"
16 COOKOPTS="!strip"
18 compile_rules()
19 {
20 #sed -i 's/exec/[ "$1" == ":" ] || &/' device/lib/pic16/depcomp
21 #sed -i 's/ -u$//' device/lib/Makefile*
23 ./configure \
24 --prefix=/usr \
25 --infodir=/usr/share/info \
26 --mandir=/usr/share/man \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$install install
30 }
32 genpkg_rules()
33 {
34 cp -a $install/usr $fs
35 }