wok view discount/receipt @ rev 20505

partclone 0.2.89 -> 0.2.70: dpkg-architecture not used here
author Erkan Yilmaz <erkan@slitaz.org>
date Tue Oct 30 11:23:14 2018 +0000 (2018-10-30)
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 }