wok view discount/receipt @ rev 20257

Add giflossy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 23:27:32 2018 +0100 (2018-03-13)
parents 27abeca1c8da
children 0ef1c61de86d
line source
1 # SliTaz package receipt.
3 PACKAGE="discount"
4 VERSION="2.1.8"
5 CATEGORY="utilities"
6 SHORT_DESC="a C implementation of the markdown spec"
7 MAINTAINER="necrophcodr@necrophcodr.me"
8 LICENSE="BSD3"
9 TARBALL="${PACKAGE}-${VERSION}.tar.gz"
10 WEB_SITE="http://www.pell.portland.or.us/~orc/Code/markdown"
11 WGET_URL="${WEB_SITE}/${TARBALL}"
12 HOST_ARCH="i486 arm"
14 DEPENDS=""
15 BUILD_DEPENDS=""
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure.sh --prefix=/usr &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/bin $fs/usr/
31 }