wok view discount/receipt @ rev 17145

libnxml: fix genpkg_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 10 12:55:03 2014 +0200 (2014-09-10)
parents
children 5ed8a72ad8ba
line source
1 # SliTaz package receipt.
3 PACKAGE="discount"
4 VERSION="2.1.7"
5 CATEGORY="utilities"
6 SHORT_DESC="a C implementation of the markdown spec"
7 MAINTAINER="tcg.thegamer@gmail.com"
8 LICENSE="BSD3"
9 TARBALL="${PACKAGE}-${VERSION}.tgz"
10 WEB_SITE="http://www.pell.portland.or.us/~orc/Code/markdown"
11 #WGET_URL="${WEB_SITE}/${TARBALL}"
12 WGET_URL="http://necrophcodr.me:8088/tarball/trunk"
13 HOST_ARCH="i486 arm"
15 DEPENDS=""
16 BUILD_DEPENDS="tup"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure.sh --prefix=/usr &&
23 tup init &&
24 tup upd &&
25 mkdir -p $DESTDIR
26 tar xvf build/discount.tgz -C $DESTDIR usr/bin/markdown
27 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $install/usr $fs/
34 }