wok rev 24517
updated epm (4.4 -> 5.0.0)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Feb 22 10:46:11 2022 +0100 (2022-02-22) |
parents | 4a3297adbb3f |
children | 08ef47c67999 |
files | epm/description.txt epm/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/epm/description.txt Tue Feb 22 10:46:11 2022 +0100 1.3 @@ -0,0 +1,15 @@ 1.4 +EPM is a simple cross-platform tool that generates software and patch 1.5 +distributions in various formats from a list of files. 1.6 + 1.7 +Supported formats include: 1.8 +* AIX software packages ("installp") 1.9 +* AT&T software packages ("pkgadd"), used by Solaris and others 1.10 +* BSD packages ("pkg_create") 1.11 +* Compaq Tru64 UNIX ("setld") 1.12 +* Debian Package Manager ("dpkg") 1.13 +* HP-UX software packages ("swinstall") 1.14 +* IRIX software manager ("inst", "swmgr", or "tardist") 1.15 +* macOS software packages ("name.pkg") 1.16 +* Portable (installation and removal scripts with tar files) 1.17 +* Red Hat Package Manager ("rpm") 1.18 +* Slackware software packages ("name.tgz")
2.1 --- a/epm/receipt Tue Feb 22 07:39:01 2022 +0100 2.2 +++ b/epm/receipt Tue Feb 22 10:46:11 2022 +0100 2.3 @@ -1,15 +1,15 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="epm" 2.7 -VERSION="4.4" 2.8 +VERSION="5.0.0" 2.9 CATEGORY="misc" 2.10 SHORT_DESC="File packaging program." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="GPL2" 2.13 -WEB_SITE="https://michaelrsweet.github.io/epm/" 2.14 +WEB_SITE="https://jimjag.github.io/epm/" 2.15 2.16 -TARBALL="$PACKAGE-$VERSION-source.tar.gz" 2.17 -WGET_URL="https://github.com/michaelrsweet/$PACKAGE/archive/v$VERSION.tar.gz" 2.18 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.19 +WGET_URL="https://github.com/jimjag/$PACKAGE/archive/v$VERSION.tar.gz" 2.20 2.21 DEPENDS="" 2.22 BUILD_DEPENDS="" 2.23 @@ -23,13 +23,19 @@ 2.24 # Rules to configure and make the package. 2.25 compile_rules() 2.26 { 2.27 - ./configure --prefix=/usr && 2.28 - make -j 1 2.29 + sed -i -e '34iINSTALL = @INSTALL@' \ 2.30 + -e 's|mkepmlist. |mkepmlist.1 |' \ 2.31 + -e 's|\$(srcdir)/COPYING \$(srcdir)/README.md||' \ 2.32 + doc/Makefile.in 2.33 + 2.34 + ./configure \ 2.35 + --prefix=/usr && 2.36 + make && 2.37 + make install 2.38 } 2.39 2.40 # Rules to gen a SliTaz package suitable for Tazpkg. 2.41 genpkg_rules() 2.42 { 2.43 - mkdir -p $fs/usr/bin 2.44 - cp -a $src/epm $fs/usr/bin 2.45 + cook_copy_folders bin 2.46 }