wok-undigest view a52dec/receipt @ rev 1223

copied libxext recipe from wok-next
author Hans-G?nter Theisgen
date Fri Nov 15 17:38:29 2019 +0100 (2019-11-15)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="a52dec"
4 VERSION="0.7.4"
5 CATEGORY="multimedia"
6 SHORT_DESC="liba52 is a free library for decoding ATSC A/52 streams"
7 MAINTAINER="danny@schmarsel.de"
8 LICENSE="GPL"
9 WEB_SITE="http://liba52.sourceforge.net/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://liba52.sourceforge.net/files/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr \
20 --libdir=/usr/lib${LIBDIRSUFFIX} \
21 --enable-shared
23 make &&
24 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 mkdir -p $fs/usr/bin
33 cp -a $install/usr/lib/liba52.so* $fs/usr/lib
34 cp -a $install/usr/bin/* $fs/usr/bin
35 }