# HG changeset patch # User Pascal Bellard # Date 1384963604 0 # Node ID d36394ef35a1c7ba1120278005b8c5c8a94ee24e # Parent 16b8e32b073efd5fca8d6e9fcea9add385a992d0 Add epm diff -r 16b8e32b073e -r d36394ef35a1 epm/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/epm/receipt Wed Nov 20 16:06:44 2013 +0000 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="epm" +VERSION="4.2" +CATEGORY="misc" +SHORT_DESC="File packaging program." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" +TARBALL="$PACKAGE-$VERSION-source.tar.bz2" +WEB_SITE="http://www.msweet.org/projects.php?Z2" +WGET_URL="http://www.msweet.org/files/project2/$TARBALL" + +DEPENDS="" +BUILD_DEPENDS="" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure --prefix=/usr && make -j 1 +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $src/epm $fs/usr/bin +}