wok diff discount/receipt @ rev 17152

Down disount (2.1.6)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 11 15:41:24 2014 +0200 (2014-09-11)
parents d5320a34f352
children 2a88fa76e991
line diff
     1.1 --- a/discount/receipt	Wed Sep 10 11:13:57 2014 +0200
     1.2 +++ b/discount/receipt	Thu Sep 11 15:41:24 2014 +0200
     1.3 @@ -1,34 +1,31 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="discount"
     1.7 -VERSION="2.1.7"
     1.8 +VERSION="2.1.6"
     1.9  CATEGORY="utilities"
    1.10  SHORT_DESC="a C implementation of the markdown spec"
    1.11  MAINTAINER="tcg.thegamer@gmail.com"
    1.12  LICENSE="BSD3"
    1.13  TARBALL="${PACKAGE}-${VERSION}.tgz"
    1.14  WEB_SITE="http://www.pell.portland.or.us/~orc/Code/markdown"
    1.15 -#WGET_URL="${WEB_SITE}/${TARBALL}"
    1.16 -WGET_URL="http://necrophcodr.me:8088/tarball/trunk"
    1.17 +WGET_URL="${WEB_SITE}/${TARBALL}"
    1.18  HOST_ARCH="i486 arm"
    1.19  
    1.20  DEPENDS=""
    1.21 -BUILD_DEPENDS="tup"
    1.22 +BUILD_DEPENDS=""
    1.23  
    1.24  # Rules to configure and make the package.
    1.25  compile_rules()
    1.26  {
    1.27 -	cd $src
    1.28  	./configure.sh --prefix=/usr &&
    1.29 -	tup init &&
    1.30 -	tup upd &&
    1.31 -	mkdir -p $DESTDIR
    1.32 -	tar xvf build/discount.tgz -C $DESTDIR usr/bin/markdown
    1.33 +	make &&
    1.34 +	make DESTDIR=$DESTDIR
    1.35  }
    1.36  
    1.37  
    1.38  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.39  genpkg_rules()
    1.40  {
    1.41 -	cp -a $install/usr $fs/
    1.42 +	mkdir -p $fs/usr
    1.43 +	cp -a $install/usr/bin $fs/usr/
    1.44  }