# HG changeset patch # User Hans-G?nter Theisgen # Date 1579796794 -3600 # Node ID fb8526ee16f53e1902e51f9aee5f955ca0555d2f # Parent e3178e8508fcbd503535a9ce43434a116ed49837 updated discount and discount-dev (2.2.5 -> 2.2.6) diff -r e3178e8508fc -r fb8526ee16f5 discount-dev/receipt --- a/discount-dev/receipt Thu Jan 23 17:15:02 2020 +0100 +++ b/discount-dev/receipt Thu Jan 23 17:26:34 2020 +0100 @@ -1,21 +1,23 @@ # SliTaz package receipt. PACKAGE="discount-dev" -VERSION="2.2.5" +VERSION="2.2.6" CATEGORY="development" -SHORT_DESC="A C implementation of the markdown language - development 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/" +DEPENDS="discount" WANTED="discount" -DEPENDS="discount" + HOST_ARCH="i486 arm" # 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 + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib $fs/usr } diff -r e3178e8508fc -r fb8526ee16f5 discount/receipt --- a/discount/receipt Thu Jan 23 17:15:02 2020 +0100 +++ b/discount/receipt Thu Jan 23 17:26:34 2020 +0100 @@ -1,25 +1,26 @@ # SliTaz package receipt. PACKAGE="discount" -VERSION="2.2.5" +VERSION="2.2.6" CATEGORY="utilities" -SHORT_DESC="A C implementation of the markdown language" +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="http://www.pell.portland.or.us/~orc/Code/markdown/" -TARBALL="${PACKAGE}-${VERSION}.tar.gz" +TARBALL="$PACKAGE-$VERSION.tar.gz" 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 -j 1 && + make && make DESTDIR=$DESTDIR install } @@ -28,5 +29,5 @@ genpkg_rules() { mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr/ + cp -a $install/usr/bin $fs/usr/ }