wok annotate elfutils/receipt @ rev 8213

imported patch toolchain/uclibc-cross-compiler-i486.patch
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Jan 27 00:20:50 2011 +0100 (2011-01-27)
parents c5b5031d956b
children ae783db76c01
rev   line source
pascal@5942 1 # SliTaz package receipt.
pascal@5942 2
pascal@5942 3 PACKAGE="elfutils"
slaxemulator@8069 4 VERSION="0.150"
pascal@5942 5 CATEGORY="development"
pascal@5942 6 SHORT_DESC="ELF object file access library."
pascal@5942 7 MAINTAINER="pascal.bellard@slitaz.org"
gokhlayeh@8178 8 DEPENDS="glibc-base"
gokhlayeh@8178 9 BUILD_DEPENDS="binutils"
pascal@5942 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
gokhlayeh@8178 11 WEB_SITE="https://fedorahosted.org/elfutils/"
gokhlayeh@8178 12 # Note : use http mirror because https can't be access at elfutils compilation time
gokhlayeh@8178 13 # when cooking from scratch.
gokhlayeh@8178 14 WGET_URL="http://cvs.fedoraproject.org/repo/pkgs/elfutils/$TARBALL/3dcfb28fa339090a1d29a9e148cce469/$TARBALL"
pascal@5942 15
pascal@5942 16 # Rules to configure and make the package.
pascal@5942 17 compile_rules()
pascal@5942 18 {
pascal@5942 19 cd $src
gokhlayeh@8178 20 ./configure &&
pascal@5942 21 make &&
slaxemulator@6931 22 make check &&
gokhlayeh@8178 23 make install
pascal@5942 24 }
pascal@5942 25
pascal@5942 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@5942 27 genpkg_rules()
pascal@5942 28 {
pascal@5942 29 mkdir -p $fs/usr/lib $fs/usr/bin
pascal@5942 30 for i in elfcmp findtextrel unstrip; do
pascal@5942 31 cp -a $_pkg/usr/bin/$i $fs/usr/bin
pascal@5942 32 done
pascal@5942 33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pascal@5942 34 cp -a $_pkg/usr/lib/elfutils $fs/usr/lib
pascal@5942 35 }