wok annotate discount/receipt @ rev 17140

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