# SliTaz package receipt.

PACKAGE="libev"
VERSION="4.04"
CATEGORY="system-tools"
SHORT_DESC="A full-featured and high-performance (see benchmark) event loop that is loosely modelled after libevent, but without its limitations and bugs."
MAINTAINER="mallory@sweetpeople.org"
TARBALL="$PACKAGE-$VERSION.tar.gz"
WEB_SITE="http://software.schmorp.de/pkg/libev.html"
WGET_URL="http://dist.schmorp.de/libev/$TARBALL"

# 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/lib/*.so* $fs/usr/lib
}