# SliTaz package receipt.

PACKAGE="pyorbit"
VERSION="2.24.0"
CATEGORY="system-tools"
SHORT_DESC="Python binding to GNOME ORBit."
MAINTAINER="pankso@slitaz.org"
DEPENDS="python ORBit2"
BUILD_DEPENDS="python-dev ORBit2-dev pkg-config"
TARBALL="$PACKAGE-$VERSION.tar.bz2"
WEB_SITE="http://www.gnome.org/"
WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"

# Rules to configure and make the package.
compile_rules()
{
	cd $src
	./configure \
		--prefix=/usr \
		$CONFIGURE_ARGS &&
	make &&
	make DESTDIR=$PWD/_pkg install
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
	cp -a $_pkg/usr $fs
}