# HG changeset patch # User Hans-G?nter Theisgen # Date 1645523171 -3600 # Node ID efae52aa21402218055c989a852e24d7ad0bc100 # Parent 4a3297adbb3f68992a04785fd5a6697136374ddc updated epm (4.4 -> 5.0.0) diff -r 4a3297adbb3f -r efae52aa2140 epm/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/epm/description.txt Tue Feb 22 10:46:11 2022 +0100 @@ -0,0 +1,15 @@ +EPM is a simple cross-platform tool that generates software and patch +distributions in various formats from a list of files. + +Supported formats include: +* AIX software packages ("installp") +* AT&T software packages ("pkgadd"), used by Solaris and others +* BSD packages ("pkg_create") +* Compaq Tru64 UNIX ("setld") +* Debian Package Manager ("dpkg") +* HP-UX software packages ("swinstall") +* IRIX software manager ("inst", "swmgr", or "tardist") +* macOS software packages ("name.pkg") +* Portable (installation and removal scripts with tar files) +* Red Hat Package Manager ("rpm") +* Slackware software packages ("name.tgz") diff -r 4a3297adbb3f -r efae52aa2140 epm/receipt --- a/epm/receipt Tue Feb 22 07:39:01 2022 +0100 +++ b/epm/receipt Tue Feb 22 10:46:11 2022 +0100 @@ -1,15 +1,15 @@ # SliTaz package receipt. PACKAGE="epm" -VERSION="4.4" +VERSION="5.0.0" CATEGORY="misc" SHORT_DESC="File packaging program." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" -WEB_SITE="https://michaelrsweet.github.io/epm/" +WEB_SITE="https://jimjag.github.io/epm/" -TARBALL="$PACKAGE-$VERSION-source.tar.gz" -WGET_URL="https://github.com/michaelrsweet/$PACKAGE/archive/v$VERSION.tar.gz" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/jimjag/$PACKAGE/archive/v$VERSION.tar.gz" DEPENDS="" BUILD_DEPENDS="" @@ -23,13 +23,19 @@ # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr && - make -j 1 + sed -i -e '34iINSTALL = @INSTALL@' \ + -e 's|mkepmlist. |mkepmlist.1 |' \ + -e 's|\$(srcdir)/COPYING \$(srcdir)/README.md||' \ + doc/Makefile.in + + ./configure \ + --prefix=/usr && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/bin - cp -a $src/epm $fs/usr/bin + cook_copy_folders bin }