# HG changeset patch # User Eric Joseph-Alexandre # Date 1323826192 -3600 # Node ID 00b0f1a6f8a1c67c30eefa49835ae83aeb146f3a # Parent d7bfc4b2a62b23ac14aed0fcbf4d5d0ff16527d6 add: libesmtp, libesmtp-dev diff -r d7bfc4b2a62b -r 00b0f1a6f8a1 libesmtp-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libesmtp-dev/receipt Wed Dec 14 02:29:52 2011 +0100 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="libesmtp-dev" +VERSION="1.0.6" +CATEGORY="development" +SHORT_DESC="Lesmpt headers files." +MAINTAINER="erjo@slitaz.,org" +WEB_SITE="http://www.stafford.uklinux.net/libesmtp/" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WANTED="libesmtp" + +DEPENDS="libesmtp" +BUILD_DEPENDS="" + + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir $fs/usr + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib $fs/usr + + find $fs -name "*.so*" -exec rm -f {} \; + +} diff -r d7bfc4b2a62b -r 00b0f1a6f8a1 libesmtp/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libesmtp/receipt Wed Dec 14 02:29:52 2011 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="libesmtp" +VERSION="1.0.6" +CATEGORY="network" +SHORT_DESC="A Library for Posting Electronic Mai" +MAINTAINER="erjo@slitaz.,org" +WEB_SITE="http://www.stafford.uklinux.net/libesmtp/" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WGET_URL="http://www.stafford.uklinux.net/libesmtp/$TARBALL" + +DEPENDS="libltdl libssl" +BUILD_DEPENDS="openssl-dev" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure $CONFIGURE_ARGS && make && make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/lib $fs/usr + + find $fs -name "*.*a" -exec rm -f {} \; +}