# HG changeset patch # User Hans-G?nter Theisgen # Date 1550670621 -3600 # Node ID 0ef1c61de86d1cac3eb6b3bf201bcb9d4e6a9cd7 # Parent b02537432c11986b1172c84cf3bc69ae5f1bad55 updated discount and discount-dev (2.1.8 -> 2.2.5) diff -r b02537432c11 -r 0ef1c61de86d discount-dev/receipt --- a/discount-dev/receipt Wed Feb 20 14:28:22 2019 +0100 +++ b/discount-dev/receipt Wed Feb 20 14:50:21 2019 +0100 @@ -1,16 +1,16 @@ # SliTaz package receipt. PACKAGE="discount-dev" -VERSION="2.1.8" +VERSION="2.2.5" CATEGORY="development" -SHORT_DESC="a C implementation of the markdown spec - dev files" +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/" + +WANTED="discount" +DEPENDS="discount" HOST_ARCH="i486 arm" -WANTED="discount" - -DEPENDS="discount" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() diff -r b02537432c11 -r 0ef1c61de86d discount/receipt --- a/discount/receipt Wed Feb 20 14:28:22 2019 +0100 +++ b/discount/receipt Wed Feb 20 14:50:21 2019 +0100 @@ -1,24 +1,25 @@ # SliTaz package receipt. PACKAGE="discount" -VERSION="2.1.8" +VERSION="2.2.5" CATEGORY="utilities" -SHORT_DESC="a C implementation of the markdown spec" +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" + TARBALL="${PACKAGE}-${VERSION}.tar.gz" -WEB_SITE="http://www.pell.portland.or.us/~orc/Code/markdown" -WGET_URL="${WEB_SITE}/${TARBALL}" -HOST_ARCH="i486 arm" +WGET_URL="https://github.com/Orc/$PACKAGE/archive/v$VERSION/$TARBALL" DEPENDS="" BUILD_DEPENDS="" +HOST_ARCH="i486 arm" # Rules to configure and make the package. compile_rules() { ./configure.sh --prefix=/usr && - make && + make -j 1 && make DESTDIR=$DESTDIR install }