wok view opencore-amr/receipt @ rev 16315

ARM: add/up vala (0.24.0) + shared-mime-info (hope it will fix some gtk crash)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 09 14:57:01 2014 +0200 (2014-04-09)
parents 7ae80fa5a40a
children c84ff7af1e21
line source
1 # SliTaz package receipt.
3 PACKAGE="opencore-amr"
4 VERSION="0.1.3"
5 CATEGORY="multimedia"
6 SHORT_DESC="Adaptive Multi Rate (AMR) speech codec"
7 MAINTAINER="domcox@slitaz.org"
8 LICENSE="Apache"
9 WEB_SITE="http://opencore-amr.sourceforge.net"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --prefix="/usr" \
21 --disable-static \
22 $CONFIGURE_ARGS &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }