wok view h8300-gcc/receipt @ rev 4022

Fix: PolicyKit FSH --localstatedir=/var and genpkg_rules
author Christophe Lincoln <pankso@slitaz.org>
date Fri Sep 04 12:12:41 2009 +0200 (2009-09-04)
parents da36d8ad132e
children 57411a44bf69
line source
1 # SliTaz package receipt.
3 PACKAGE="h8300-gcc"
4 SOURCE="gcc"
5 VERSION="4.4.1"
6 CATEGORY="development"
7 SHORT_DESC="gcc targeting the H8/300"
8 MAINTAINER="rcx@zoominternet.net"
9 DEPENDS="h8300-binutils glibc-base gmp mpfr"
10 BUILD_DEPENDS="slitaz-toolchain gawk flex gmp gmp-dev mpfr mpfr-dev h8300-binutils"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.gnu.org/software/gcc/"
13 WGET_URL="$GNU_MIRROR/$SOURCE/$SOURCE-$VERSION/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 rm -f -r $src/libssp $src/libstdc++-v3 $src/binutils
19 mkdir -p $SOURCE-$VERSION-build
20 cd $SOURCE-$VERSION-build
21 $src/configure \
22 --target=h8300-hitachi-hms \
23 --enable-languages=c,c++ \
24 --disable-nls \
25 --enable-target-optspace \
26 --enable-obsolete \
27 --prefix=/usr \
28 --exec-prefix=/usr \
29 --libexecdir=/usr/lib \
30 --infodir=/usr/share/info \
31 --mandir=/usr/share/man \
32 $CONFIGURE_ARGS &&
33 make &&
34 make DESTDIR=$src/_pkg install
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 mkdir -p $fs/usr
41 cp -a $_pkg/usr/bin $fs/usr
42 cp -a $_pkg/usr/include $fs/usr
43 # do not need to copy lib/libiberty.a
44 mkdir -p $fs/usr/lib
45 cp -a $_pkg/usr/lib/gcc $fs/usr/lib
46 }
48 # Rules to clean the package
49 clean_wok()
50 {
51 rm -r $SOURCE-$VERSION-build
52 }