wok view libogg/receipt @ rev 23029

updated libffi and libffi-dev (3.2.1 -> 3.3)
author Hans-G?nter Theisgen
date Tue Mar 03 16:31:51 2020 +0100 (2020-03-03)
parents a78610b2eb47
children ff6a72a8721a
line source
1 # SliTaz package receipt.
3 PACKAGE="libogg"
4 VERSION="1.3.3"
5 CATEGORY="multimedia"
6 SHORT_DESC="OGG library from Xiph.org project."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://www.xiph.org/ogg/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://downloads.xiph.org/releases/ogg/$TARBALL"
14 DEPENDS="glibc-base"
16 HOST_ARCH="i486 arm"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure $CONFIGURE_ARGS &&
22 make -j1 &&
23 make -j1 DESTDIR=$DESTDIR 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 }