# SliTaz package receipt.

PACKAGE="edbus"
VERSION="1.0.1"
CATEGORY="x-window"
SHORT_DESC="Enlightenment's (Ecore) integration to DBus"
MAINTAINER="pankso@slitaz.org"
SOURCE="e_dbus"
TARBALL="$SOURCE-$VERSION.tar.bz2"
WEB_SITE="http://www.enlightenment.org/"
WGET_URL="http://download.enlightenment.org/releases/$TARBALL"

DEPENDS="eina eet ecore evas dbus"
BUILD_DEPENDS="eina-dev eet-dev ecore-dev evas-dev dbus-dev"

# Rules to configure and make the package.
compile_rules()
{
	cd $src
	./configure $CONFIGURE_ARGS && 
	make && make install
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
	mkdir -p $fs/usr/lib
	cp -a $_pkg/usr/bin $fs/usr
	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
}