# HG changeset patch # User Paul Issott # Date 1235909060 0 # Node ID 5947b29555483e1d8e96a83b478c2f4cc2b64ba5 # Parent cbea600c0458affd3ab6563914df5ca80356763c Add alpine diff -r cbea600c0458 -r 5947b2955548 alpine/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/alpine/receipt Sun Mar 01 12:04:20 2009 +0000 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="alpine" +VERSION="2.00" +CATEGORY="network" +SHORT_DESC="Fast, easy to use email client." +MAINTAINER="paul@slitaz.org" +DEPENDS="openssl" +BUILD_DEPENDS="openssl-dev" +TARBALL="$PACKAGE.tar.gz" +WEB_SITE="http://www.washington.edu/alpine/" +WGET_URL="ftp://ftp.cac.washington.edu/alpine/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr +}