wok rev 24483

updated discount and discount-dev (2.2.6 -> 2.2.7)
author Hans-G?nter Theisgen
date Fri Feb 18 15:05:42 2022 +0100 (2022-02-18)
parents 73d8fca57fa5
children 0beaafd8d345
files discount-dev/receipt discount/description.txt discount/receipt
line diff
     1.1 --- a/discount-dev/receipt	Fri Feb 18 14:45:09 2022 +0100
     1.2 +++ b/discount-dev/receipt	Fri Feb 18 15:05:42 2022 +0100
     1.3 @@ -1,12 +1,12 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="discount-dev"
     1.7 -VERSION="2.2.6"
     1.8 +VERSION="2.2.7"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="A C implementation of the markdown language - development files."
    1.11  MAINTAINER="necrophcodr@necrophcodr.me"
    1.12  LICENSE="BSD3"
    1.13 -WEB_SITE="http://www.pell.portland.or.us/~orc/Code/markdown/"
    1.14 +WEB_SITE="https://www.pell.portland.or.us/~orc/Code/markdown/"
    1.15  
    1.16  DEPENDS="discount"
    1.17  WANTED="discount"
    1.18 @@ -16,9 +16,7 @@
    1.19  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.20  genpkg_rules()
    1.21  {
    1.22 -	mkdir -p $fs/usr
    1.23 -
    1.24 -	cp -a $install/usr/include	$fs/usr
    1.25 -	cp -a $install/usr/lib		$fs/usr
    1.26 +	cook_copy_folders	include
    1.27 +	cook_copy_folders	lib
    1.28  }
    1.29  
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/discount/description.txt	Fri Feb 18 15:05:42 2022 +0100
     2.3 @@ -0,0 +1,9 @@
     2.4 +This is an implementation of John Gruber's Markdown text to html language.
     2.5 +There's not much here that differentiates it from any of the existing
     2.6 +Markdown implementations except that it's written in C instead of one of
     2.7 +the vast flock of scripting languages that are fighting it out for the
     2.8 +Perl crown.
     2.9 +
    2.10 +Markdown provides a library that gives you formatting functions suitable
    2.11 +for marking down entire documents or lines of text, a command-line program
    2.12 +that you can use to mark down documents interactively or from a script.
     3.1 --- a/discount/receipt	Fri Feb 18 14:45:09 2022 +0100
     3.2 +++ b/discount/receipt	Fri Feb 18 15:05:42 2022 +0100
     3.3 @@ -1,12 +1,12 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="discount"
     3.7 -VERSION="2.2.6"
     3.8 +VERSION="2.2.7"
     3.9  CATEGORY="utilities"
    3.10  SHORT_DESC="A C implementation of the markdown language."
    3.11  MAINTAINER="necrophcodr@necrophcodr.me"
    3.12  LICENSE="BSD3"
    3.13 -WEB_SITE="http://www.pell.portland.or.us/~orc/Code/markdown/"
    3.14 +WEB_SITE="https://www.pell.portland.or.us/~orc/Code/markdown"
    3.15  
    3.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.17  WGET_URL="https://github.com/Orc/$PACKAGE/archive/v$VERSION/$TARBALL"
    3.18 @@ -27,13 +27,13 @@
    3.19  {
    3.20  	./configure.sh --prefix=/usr &&
    3.21  	make -j 1 &&
    3.22 -	make DESTDIR=$DESTDIR install
    3.23 +	make install DESTDIR=$DESTDIR
    3.24 +# Do not remove  -j 1 !
    3.25  }
    3.26  
    3.27  
    3.28  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.29  genpkg_rules()
    3.30  {
    3.31 -	mkdir -p $fs/usr
    3.32 -	cp -a $install/usr/bin	$fs/usr/
    3.33 +	cook_copy_folders	bin
    3.34  }