wok view epm/receipt @ rev 24137

updated qpdf and qpdf-dev (8.4.2 -> 10.3.2)
author Hans-G?nter Theisgen
date Mon Nov 08 17:10:43 2021 +0100 (2021-11-08)
parents df02951ceb75
children efae52aa2140
line source
1 # SliTaz package receipt.
3 PACKAGE="epm"
4 VERSION="4.4"
5 CATEGORY="misc"
6 SHORT_DESC="File packaging program."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://michaelrsweet.github.io/epm/"
11 TARBALL="$PACKAGE-$VERSION-source.tar.gz"
12 WGET_URL="https://github.com/michaelrsweet/$PACKAGE/archive/v$VERSION.tar.gz"
14 DEPENDS=""
15 BUILD_DEPENDS=""
17 current_version()
18 {
19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 ./configure --prefix=/usr &&
27 make -j 1
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/bin
34 cp -a $src/epm $fs/usr/bin
35 }