wok view discount/receipt @ rev 22464

updated acct (6.6.2 -> 6.6.4)
author Hans-G?nter Theisgen
date Fri Dec 27 15:52:30 2019 +0100 (2019-12-27)
parents b81825d54cb6
children fb8526ee16f5
line source
1 # SliTaz package receipt.
3 PACKAGE="discount"
4 VERSION="2.2.5"
5 CATEGORY="utilities"
6 SHORT_DESC="A C implementation of the markdown language"
7 MAINTAINER="necrophcodr@necrophcodr.me"
8 LICENSE="BSD3"
9 WEB_SITE="http://www.pell.portland.or.us/~orc/Code/markdown"
11 TARBALL="${PACKAGE}-${VERSION}.tar.gz"
12 WGET_URL="https://github.com/Orc/$PACKAGE/archive/v$VERSION/$TARBALL"
14 DEPENDS=""
15 BUILD_DEPENDS=""
16 HOST_ARCH="i486 arm"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure.sh --prefix=/usr &&
22 make -j 1 &&
23 make DESTDIR=$DESTDIR install
24 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr/
32 }