wok-next annotate libmad/receipt @ rev 19889
dropbear, openssh: add ecdsa key & brute force filter
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Oct 10 08:54:54 2017 +0200 (2017-10-10) |
parents | d7effc007afd |
children | 6a3f3d91ab26 |
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@15964 | 12 HOST_ARCH="i486 arm" |
pankso@32 | 13 |
al@19678 | 14 BUILD_DEPENDS="gfortran" |
al@19678 | 15 |
pankso@32 | 16 # Rules to configure and make the package. |
pankso@32 | 17 compile_rules() |
pankso@32 | 18 { |
pascal@4257 | 19 sed -i '/-fforce-mem/d' ./configure |
pankso@15964 | 20 ./configure --prefix=/usr $CONFIGURE_ARGS && |
pankso@15964 | 21 make && make DESTDIR=$DESTDIR install |
pankso@32 | 22 } |
pankso@32 | 23 |
pankso@32 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@32 | 25 genpkg_rules() |
pankso@32 | 26 { |
pankso@32 | 27 mkdir -p $fs/usr/lib |
pascal@15473 | 28 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@32 | 29 } |
pankso@32 | 30 |