wok annotate libmad/receipt @ rev 15925
linux: add ata orphans
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Feb 19 12:47:39 2014 +0000 (2014-02-19) |
parents | 0f8dcbf8807b |
children | d7effc007afd |
rev | line source |
---|---|
pankso@32 | 1 # SliTaz package receipt. |
pankso@32 | 2 |
pankso@32 | 3 PACKAGE="libmad" |
pankso@32 | 4 VERSION="0.15.1b" |
pankso@206 | 5 CATEGORY="multimedia" |
pankso@32 | 6 SHORT_DESC="MAD is a high-quality MPEG audio decoder." |
pankso@32 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15473 | 8 LICENSE="GPL2" |
pankso@32 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@32 | 10 WEB_SITE="http://www.underbit.com/products/mad/" |
pankso@32 | 11 WGET_URL="$SF_MIRROR/mad/$TARBALL" |
pankso@32 | 12 |
pankso@32 | 13 # Rules to configure and make the package. |
pankso@32 | 14 compile_rules() |
pankso@32 | 15 { |
pankso@32 | 16 cd $src |
pascal@4257 | 17 sed -i '/-fforce-mem/d' ./configure |
pankso@32 | 18 ./configure --prefix=/usr $CONFIGURE_ARGS |
pankso@32 | 19 make |
pascal@15473 | 20 make DESTDIR=$DESTDIR install |
pankso@32 | 21 } |
pankso@32 | 22 |
pankso@32 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@32 | 24 genpkg_rules() |
pankso@32 | 25 { |
pankso@32 | 26 mkdir -p $fs/usr/lib |
pascal@15473 | 27 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@32 | 28 } |
pankso@32 | 29 |