# HG changeset patch # User Hans-G?nter Theisgen # Date 1645193142 -3600 # Node ID 8cd7415960ec3b5a5a794a375e92edb410573661 # Parent 73d8fca57fa50bb8febf0a9b9fd208cacc2419ec updated discount and discount-dev (2.2.6 -> 2.2.7) diff -r 73d8fca57fa5 -r 8cd7415960ec discount-dev/receipt --- a/discount-dev/receipt Fri Feb 18 14:45:09 2022 +0100 +++ b/discount-dev/receipt Fri Feb 18 15:05:42 2022 +0100 @@ -1,12 +1,12 @@ # SliTaz package receipt. PACKAGE="discount-dev" -VERSION="2.2.6" +VERSION="2.2.7" CATEGORY="development" SHORT_DESC="A C implementation of the markdown language - development files." MAINTAINER="necrophcodr@necrophcodr.me" LICENSE="BSD3" -WEB_SITE="http://www.pell.portland.or.us/~orc/Code/markdown/" +WEB_SITE="https://www.pell.portland.or.us/~orc/Code/markdown/" DEPENDS="discount" WANTED="discount" @@ -16,9 +16,7 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib $fs/usr + cook_copy_folders include + cook_copy_folders lib } diff -r 73d8fca57fa5 -r 8cd7415960ec discount/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/discount/description.txt Fri Feb 18 15:05:42 2022 +0100 @@ -0,0 +1,9 @@ +This is an implementation of John Gruber's Markdown text to html language. +There's not much here that differentiates it from any of the existing +Markdown implementations except that it's written in C instead of one of +the vast flock of scripting languages that are fighting it out for the +Perl crown. + +Markdown provides a library that gives you formatting functions suitable +for marking down entire documents or lines of text, a command-line program +that you can use to mark down documents interactively or from a script. diff -r 73d8fca57fa5 -r 8cd7415960ec discount/receipt --- a/discount/receipt Fri Feb 18 14:45:09 2022 +0100 +++ b/discount/receipt Fri Feb 18 15:05:42 2022 +0100 @@ -1,12 +1,12 @@ # SliTaz package receipt. PACKAGE="discount" -VERSION="2.2.6" +VERSION="2.2.7" CATEGORY="utilities" SHORT_DESC="A C implementation of the markdown language." MAINTAINER="necrophcodr@necrophcodr.me" LICENSE="BSD3" -WEB_SITE="http://www.pell.portland.or.us/~orc/Code/markdown/" +WEB_SITE="https://www.pell.portland.or.us/~orc/Code/markdown" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://github.com/Orc/$PACKAGE/archive/v$VERSION/$TARBALL" @@ -27,13 +27,13 @@ { ./configure.sh --prefix=/usr && make -j 1 && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR +# Do not remove -j 1 ! } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr/ + cook_copy_folders bin }