# SliTaz package receipt.

PACKAGE="libestr"
VERSION="0.1.2"
CATEGORY="system-tools"
SHORT_DESC="some essentials for string handling "
MAINTAINER="erjo@slitaz.org"
WEB_SITE="http://libestr.adiscon.com/"
TARBALL="$PACKAGE-$VERSION.tar.gz"
WGET_URL="http://libestr.adiscon.com/files/download/$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 $install/usr/lib/*.so* $fs/usr/lib
}