wok diff libcanberra/receipt @ rev 6013

PolicyKit: Update receipt
author Matthew Sheets <rcx@zoominternet.net>
date Sat Aug 14 18:58:00 2010 +0000 (2010-08-14)
parents
children a0ef91b8d352
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libcanberra/receipt	Sat Aug 14 18:58:00 2010 +0000
     1.3 @@ -0,0 +1,33 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libcanberra"
     1.7 +VERSION="0.24"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="Portable Sound Event Library"
    1.10 +MAINTAINER="devl547@gmail.com"
    1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.12 +WEB_SITE="http://0pointer.de/lennart/projects/libcanberra/"
    1.13 +WGET_URL="$WEB_SITE/$TARBALL"
    1.14 +DEPENDS="libvorbis libogg gstreamer alsa-lib"
    1.15 +BUILD_DEPENDS="libvorbis-dev libogg-dev gstreamer-dev alsa-lib-dev vala"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +	cd $src
    1.21 +	./configure \
    1.22 +		--prefix=/usr \
    1.23 +		--enable-gtk \
    1.24 +		$CONFIGURE_ARGS &&
    1.25 +	make &&
    1.26 +	make DESTDIR=$PWD/_pkg install
    1.27 +}
    1.28 +
    1.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 +genpkg_rules()
    1.31 +{
    1.32 +	mkdir -p $fs/usr/lib/$PACKAGE-$VERSION
    1.33 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.34 +	# We could split package in libcanberra-modules to avoid gstreamer dep.
    1.35 +	cp -a $_pkg/usr/lib/$PACKAGE-$VERSION/*.so $fs/usr/lib/$PACKAGE-$VERSION
    1.36 +}