wok view orc/receipt @ rev 22541

Add gnubik
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jan 03 16:37:44 2020 +0100 (2020-01-03)
parents eeba7ab1dffe
children a4fc90252774
line source
1 # SliTaz package receipt.
3 PACKAGE="orc"
4 VERSION="0.4.29"
5 CATEGORY="multimedia"
6 SHORT_DESC="The Oil Runtime Compiler."
7 MAINTAINER="domcox@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://gstreamer.freedesktop.org/projects/orc.html"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://gstreamer.freedesktop.org/src/$PACKAGE/$TARBALL"
14 HOST_ARCH="i486 arm"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --libexecdir=/usr/lib \
21 --disable-static \
22 $CONFIGURE_ARGS &&
23 make $MAKEFLAGS &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }