wok view epm/receipt @ rev 22294

updated xorg-xload (1.1.1 -> 1.1.3)
author Hans-G?nter Theisgen
date Wed Nov 13 16:30:29 2019 +0100 (2019-11-13)
parents 8dd8bab3f0ca
children 5ea0ce1cecc0
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 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr &&
21 make -j 1
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin
28 cp -a $src/epm $fs/usr/bin
29 }