wok diff 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 diff
     1.1 --- a/orc/receipt	Thu Jan 24 18:16:34 2019 +0100
     1.2 +++ b/orc/receipt	Fri Jan 03 16:37:44 2020 +0100
     1.3 @@ -1,30 +1,34 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="orc"
     1.7 -VERSION="0.4.18"
     1.8 +VERSION="0.4.29"
     1.9  CATEGORY="multimedia"
    1.10 -SHORT_DESC="The Oil Runtime Compiler"
    1.11 +SHORT_DESC="The Oil Runtime Compiler."
    1.12  MAINTAINER="domcox@slitaz.org"
    1.13  LICENSE="BSD"
    1.14 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 -WEB_SITE="https://gstreamer.freedesktop.org/data/doc/orc/"
    1.16 -WGET_URL="$WEB_SITE/download/$PACKAGE/$TARBALL"
    1.17 +WEB_SITE="https://gstreamer.freedesktop.org/projects/orc.html"
    1.18 +
    1.19 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.20 +WGET_URL="https://gstreamer.freedesktop.org/src/$PACKAGE/$TARBALL"
    1.21 +
    1.22  HOST_ARCH="i486 arm"
    1.23  
    1.24  # Rules to configure and make the package.
    1.25  compile_rules()
    1.26  {
    1.27 -	./configure \
    1.28 -		--libexecdir=/usr/lib \
    1.29 -		--disable-static \
    1.30 +	./configure			\
    1.31 +		--libexecdir=/usr/lib	\
    1.32 +		--disable-static	\
    1.33  		$CONFIGURE_ARGS &&
    1.34 -	make $MAKEFLAGS && make install
    1.35 +	make $MAKEFLAGS &&
    1.36 +	make install
    1.37  }
    1.38  
    1.39  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.40  genpkg_rules()
    1.41  {
    1.42  	mkdir -p $fs/usr/lib
    1.43 -	cp -a $install/usr/bin $fs/usr
    1.44 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.45 +
    1.46 +	cp -a $install/usr/bin		$fs/usr
    1.47 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.48  }