wok diff epm/receipt @ rev 24793

updated libgpg-error and libgpg-error-dev (1.37 -> 1.44)
author Hans-G?nter Theisgen
date Mon Mar 21 15:45:38 2022 +0100 (2022-03-21)
parents 5ea0ce1cecc0
children 20ad21d5532c
line diff
     1.1 --- a/epm/receipt	Tue Jun 08 08:46:05 2021 +0000
     1.2 +++ b/epm/receipt	Mon Mar 21 15:45:38 2022 +0100
     1.3 @@ -1,15 +1,15 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="epm"
     1.7 -VERSION="4.4"
     1.8 +VERSION="5.0.0"
     1.9  CATEGORY="misc"
    1.10  SHORT_DESC="File packaging program."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="GPL2"
    1.13 -WEB_SITE="https://michaelrsweet.github.io/epm/"
    1.14 +WEB_SITE="https://jimjag.github.io/epm/"
    1.15  
    1.16 -TARBALL="$PACKAGE-$VERSION-source.tar.gz"
    1.17 -WGET_URL="https://github.com/michaelrsweet/$PACKAGE/archive/v$VERSION.tar.gz"
    1.18 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.19 +WGET_URL="https://github.com/jimjag/$PACKAGE/archive/v$VERSION.tar.gz"
    1.20  
    1.21  DEPENDS=""
    1.22  BUILD_DEPENDS=""
    1.23 @@ -23,13 +23,19 @@
    1.24  # Rules to configure and make the package.
    1.25  compile_rules()
    1.26  {
    1.27 -	./configure --prefix=/usr &&
    1.28 -	make -j 1
    1.29 +	sed -i	-e '34iINSTALL = @INSTALL@' \
    1.30 +		-e 's|mkepmlist. |mkepmlist.1 |' \
    1.31 +		-e 's|\$(srcdir)/COPYING \$(srcdir)/README.md||' \
    1.32 +		doc/Makefile.in
    1.33 +
    1.34 +	./configure		\
    1.35 +		--prefix=/usr &&
    1.36 +	make &&
    1.37 +	make install
    1.38  }
    1.39  
    1.40  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.41  genpkg_rules()
    1.42  {
    1.43 -	mkdir -p $fs/usr/bin
    1.44 -	cp -a $src/epm $fs/usr/bin
    1.45 +	cook_copy_folders	bin
    1.46  }