wok-next diff orc/receipt @ rev 19869

rhythmcat2, florence, alarm-clock-applet: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 27 17:55:19 2017 +0200 (2017-09-27)
parents 4c9e6fbf8207
children c4e53a39395a
line diff
     1.1 --- a/orc/receipt	Mon Apr 21 20:50:39 2014 +0200
     1.2 +++ b/orc/receipt	Wed Sep 27 17:55:19 2017 +0200
     1.3 @@ -1,30 +1,31 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="orc"
     1.8 -VERSION="0.4.18"
     1.9 +VERSION="0.4.26"
    1.10  CATEGORY="multimedia"
    1.11 -SHORT_DESC="The Oil Runtime Compiler"
    1.12 +SHORT_DESC="Optimized inner loop Runtime Compiler"
    1.13  MAINTAINER="domcox@slitaz.org"
    1.14  LICENSE="BSD"
    1.15 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 -WEB_SITE="http://code.entropywave.com/"
    1.17 -WGET_URL="$WEB_SITE/download/$PACKAGE/$TARBALL"
    1.18 +WEB_SITE="https://gstreamer.freedesktop.org/data/doc/orc/"
    1.19  HOST_ARCH="i486 arm"
    1.20  
    1.21 +TARBALL="orc-$VERSION.tar.xz"
    1.22 +WGET_URL="https://gstreamer.freedesktop.org/src/orc/$TARBALL"
    1.23 +
    1.24 +BUILD_DEPENDS="valgrind-dev"
    1.25 +SPLIT="orc-dev"
    1.26 +
    1.27  # Rules to configure and make the package.
    1.28  compile_rules()
    1.29  {
    1.30 -	./configure \
    1.31 -		--libexecdir=/usr/lib \
    1.32 -		--disable-static \
    1.33 -		$CONFIGURE_ARGS &&
    1.34 -	make $MAKEFLAGS && make install
    1.35 +	./configure $CONFIGURE_ARGS && make $MAKEFLAGS && make install
    1.36  }
    1.37  
    1.38  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.39  genpkg_rules()
    1.40  {
    1.41 -	mkdir -p $fs/usr/lib
    1.42 -	cp -a $install/usr/bin $fs/usr
    1.43 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.44 +	case $PACKAGE in
    1.45 +		orc)   copy @std;;
    1.46 +		*-dev) copy @dev;;
    1.47 +	esac
    1.48  }