wok-current view libmad-dev/receipt @ rev 25629
Mass updates for current
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Wed Oct 11 18:45:46 2023 +0000 (16 months ago) |
parents | d7effc007afd |
children | 5926178cd6fa |
line source
1 # SliTaz package receipt.
3 PACKAGE="libmad-dev"
4 VERSION="0.15.1b"
5 CATEGORY="development"
6 SHORT_DESC="MAD is a high-quality MPEG audio decoder devel files."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WANTED="libmad"
10 WEB_SITE="http://www.underbit.com/products/mad/"
11 HOST_ARCH="i486 arm"
13 DEPENDS="libmad pkg-config"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 mkdir -p $fs/usr/lib
19 cp -a $install/usr/include $fs/usr
21 # mad.pc patch
22 mkdir -p $fs/usr/lib/pkgconfig
23 cat > $fs/usr/lib/pkgconfig/mad.pc << "EOF"
24 prefix=/usr
25 exec_prefix=${prefix}
26 libdir=${exec_prefix}/lib
27 includedir=${prefix}/include
29 Name: mad
30 Description: MPEG audio decoder
31 Version: 0.15.1b
33 Libs: -L${libdir} -lmad
34 Cflags: -I${includedir}
35 EOF
37 }