wok view h8300-binutils/receipt @ rev 4014

h8300-binutils, h8300-gcc3: fix FSH
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 03 21:23:46 2009 +0200 (2009-09-03)
parents c9ccc46854e4
children 57411a44bf69
line source
1 # SliTaz package receipt.
3 PACKAGE="h8300-binutils"
4 SOURCE="binutils"
5 VERSION="2.16.1"
6 CATEGORY="development"
7 SHORT_DESC="binutils targeting the H8/300"
8 MAINTAINER="rcx@zoominternet.net"
9 DEPENDS=""
10 BUILD_DEPENDS="slitaz-toolchain bison flex"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.gnu.org/software/binutils/"
13 WGET_URL="$GNU_MIRROR/$SOURCE/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --target=h8300-hitachi-hms \
21 --prefix=/usr \
22 --disable-nls \
23 --exec-prefix=/usr \
24 --libexecdir=/usr/lib \
25 --infodir=/usr/share/info \
26 --mandir=/usr/share/man \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
36 cp -a $_pkg/usr/bin $fs/usr
37 cp -a $_pkg/usr/lib $fs/usr
38 # do not need to copy lib/libiberty.a
39 rm -f $fs/usr/lib/libiberty.a
40 }