wok annotate 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
rev   line source
domcox@14013 1 # SliTaz package receipt.
domcox@14013 2
domcox@14013 3 PACKAGE="orc"
Hans-G?nter@21645 4 VERSION="0.4.29"
domcox@14013 5 CATEGORY="multimedia"
Hans-G?nter@21645 6 SHORT_DESC="The Oil Runtime Compiler."
domcox@14013 7 MAINTAINER="domcox@slitaz.org"
pascal@15601 8 LICENSE="BSD"
Hans-G?nter@21645 9 WEB_SITE="https://gstreamer.freedesktop.org/projects/orc.html"
Hans-G?nter@21645 10
Hans-G?nter@21645 11 TARBALL="$PACKAGE-$VERSION.tar.xz"
Hans-G?nter@21645 12 WGET_URL="https://gstreamer.freedesktop.org/src/$PACKAGE/$TARBALL"
Hans-G?nter@21645 13
pankso@16381 14 HOST_ARCH="i486 arm"
domcox@14013 15
domcox@14013 16 # Rules to configure and make the package.
domcox@14013 17 compile_rules()
domcox@14013 18 {
Hans-G?nter@21645 19 ./configure \
Hans-G?nter@21645 20 --libexecdir=/usr/lib \
Hans-G?nter@21645 21 --disable-static \
domcox@14013 22 $CONFIGURE_ARGS &&
Hans-G?nter@21645 23 make $MAKEFLAGS &&
Hans-G?nter@21645 24 make install
domcox@14013 25 }
domcox@14013 26
domcox@14013 27 # Rules to gen a SliTaz package suitable for Tazpkg.
domcox@14013 28 genpkg_rules()
domcox@14013 29 {
domcox@14013 30 mkdir -p $fs/usr/lib
Hans-G?nter@21645 31
Hans-G?nter@21645 32 cp -a $install/usr/bin $fs/usr
Hans-G?nter@21645 33 cp -a $install/usr/lib/*.so* $fs/usr/lib
domcox@14013 34 }