wok annotate epm/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 8dd8bab3f0ca
children 5ea0ce1cecc0
rev   line source
pascal@15526 1 # SliTaz package receipt.
pascal@15526 2
pascal@15526 3 PACKAGE="epm"
Hans-G?nter@20888 4 VERSION="4.4"
pascal@15526 5 CATEGORY="misc"
pascal@15526 6 SHORT_DESC="File packaging program."
pascal@15526 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15526 8 LICENSE="GPL2"
Hans-G?nter@20888 9 WEB_SITE="https://michaelrsweet.github.io/epm/"
Hans-G?nter@20888 10
Hans-G?nter@20888 11 TARBALL="$PACKAGE-$VERSION-source.tar.gz"
Hans-G?nter@20888 12 WGET_URL="https://github.com/michaelrsweet/$PACKAGE/archive/v$VERSION.tar.gz"
pascal@15526 13
pascal@15526 14 DEPENDS=""
pascal@15526 15 BUILD_DEPENDS=""
pascal@15526 16
pascal@15526 17 # Rules to configure and make the package.
pascal@15526 18 compile_rules()
pascal@15526 19 {
Hans-G?nter@20888 20 ./configure --prefix=/usr &&
Hans-G?nter@20888 21 make -j 1
pascal@15526 22 }
pascal@15526 23
pascal@15526 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@15526 25 genpkg_rules()
pascal@15526 26 {
pascal@15526 27 mkdir -p $fs/usr/bin
pascal@15526 28 cp -a $src/epm $fs/usr/bin
pascal@15526 29 }