wok diff efl/receipt @ rev 15844

dosfstools, flac: update WGET_URL
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 27 11:21:33 2014 +0000 (2014-01-27)
parents
children 674ab23cab4c
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/efl/receipt	Mon Jan 27 11:21:33 2014 +0000
     1.3 @@ -0,0 +1,47 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="efl"
     1.7 +VERSION="1.8.3"
     1.8 +CATEGORY="base-system"
     1.9 +SHORT_DESC="EFL Core data structure library."
    1.10 +MAINTAINER="domcox@slitaz.org"
    1.11 +LICENSE="LGPL2.1"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.13 +WEB_SITE="http://www.enlightenment.org/"
    1.14 +WGET_URL="http://download.enlightenment.org/rel/libs/$PACKAGE/$TARBALL"
    1.15 +TAGS="e enlightenment efl"
    1.16 +
    1.17 +DEPENDS="gstreamer gst-plugins-base
    1.18 +util-linux-mount util-linux-blkid udev openssl dbus
    1.19 +libjpeg fribidi giflib tiff libsndfile lua
    1.20 +xorg-libXp xorg-libXScrnSaver mesa bullet util-linux-uuid"
    1.21 +
    1.22 +BUILD_DEPENDS="gstreamer-dev gst-plugins-base-dev check-dev
    1.23 +util-linux-mount-dev util-linux-blkid-dev udev-dev openssl-dev dbus-dev
    1.24 +jpeg-dev fribidi-dev giflib-dev tiff-dev libsndfile-dev lua-dev
    1.25 +xorg-libXp-dev xorg-printproto xorg-scrnsaverproto xorg-libXScrnSaver-dev
    1.26 +mesa-dev util-linux-uuid-dev libxml2-dev
    1.27 +autoconf automake"
    1.28 +
    1.29 +# Rules to configure and make the package.
    1.30 +compile_rules()
    1.31 +{
    1.32 +	autoreconf -v &&
    1.33 +	./configure \
    1.34 +		--disable-static \
    1.35 +		--disable-doc \
    1.36 +		--disable-pulseaudio \
    1.37 +		--disable-physics \
    1.38 +		$CONFIGURE_ARGS &&
    1.39 +	make && make -j1 install DESTDIR=$install
    1.40 +}
    1.41 +
    1.42 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.43 +genpkg_rules()
    1.44 +{
    1.45 +	mkdir -p $fs/usr/lib
    1.46 +	cp -a $install/usr/bin $fs/usr
    1.47 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.48 +	cp -a $install/usr/lib/e* $fs/usr/lib
    1.49 +	cp -a $install/usr/share $fs/usr/
    1.50 +}