wok view libogg/receipt @ rev 21069

updated jabberd2 (2.2.16 -> 2.7.0)
author Hans-G?nter Theisgen
date Thu Mar 14 15:45:54 2019 +0100 (2019-03-14)
parents a73d738315e8
children 2492bd8d5478
line source
1 # SliTaz package receipt.
3 PACKAGE="libogg"
4 VERSION="1.3.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="OGG library from Xiph.org project."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="https://www.xiph.org/"
11 WGET_URL="https://downloads.xiph.org/releases/ogg/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="glibc-base"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS &&
20 make &&
21 make -j1 DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }