wok rev 22734
updated discount and discount-dev (2.2.5 -> 2.2.6)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Jan 23 17:26:34 2020 +0100 (2020-01-23) |
parents | e3178e8508fc |
children | 6422600fc806 |
files | discount-dev/receipt discount/receipt |
line diff
1.1 --- a/discount-dev/receipt Thu Jan 23 17:15:02 2020 +0100 1.2 +++ b/discount-dev/receipt Thu Jan 23 17:26:34 2020 +0100 1.3 @@ -1,21 +1,23 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="discount-dev" 1.7 -VERSION="2.2.5" 1.8 +VERSION="2.2.6" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="A C implementation of the markdown language - development files" 1.11 +SHORT_DESC="A C implementation of the markdown language - development files." 1.12 MAINTAINER="necrophcodr@necrophcodr.me" 1.13 LICENSE="BSD3" 1.14 WEB_SITE="http://www.pell.portland.or.us/~orc/Code/markdown/" 1.15 1.16 +DEPENDS="discount" 1.17 WANTED="discount" 1.18 -DEPENDS="discount" 1.19 + 1.20 HOST_ARCH="i486 arm" 1.21 1.22 # Rules to gen a SliTaz package suitable for Tazpkg. 1.23 genpkg_rules() 1.24 { 1.25 mkdir -p $fs/usr 1.26 - cp -a $install/usr/include $fs/usr 1.27 - cp -a $install/usr/lib $fs/usr 1.28 + 1.29 + cp -a $install/usr/include $fs/usr 1.30 + cp -a $install/usr/lib $fs/usr 1.31 }
2.1 --- a/discount/receipt Thu Jan 23 17:15:02 2020 +0100 2.2 +++ b/discount/receipt Thu Jan 23 17:26:34 2020 +0100 2.3 @@ -1,25 +1,26 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="discount" 2.7 -VERSION="2.2.5" 2.8 +VERSION="2.2.6" 2.9 CATEGORY="utilities" 2.10 -SHORT_DESC="A C implementation of the markdown language" 2.11 +SHORT_DESC="A C implementation of the markdown language." 2.12 MAINTAINER="necrophcodr@necrophcodr.me" 2.13 LICENSE="BSD3" 2.14 -WEB_SITE="http://www.pell.portland.or.us/~orc/Code/markdown" 2.15 +WEB_SITE="http://www.pell.portland.or.us/~orc/Code/markdown/" 2.16 2.17 -TARBALL="${PACKAGE}-${VERSION}.tar.gz" 2.18 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.19 WGET_URL="https://github.com/Orc/$PACKAGE/archive/v$VERSION/$TARBALL" 2.20 2.21 DEPENDS="" 2.22 BUILD_DEPENDS="" 2.23 + 2.24 HOST_ARCH="i486 arm" 2.25 2.26 # Rules to configure and make the package. 2.27 compile_rules() 2.28 { 2.29 ./configure.sh --prefix=/usr && 2.30 - make -j 1 && 2.31 + make && 2.32 make DESTDIR=$DESTDIR install 2.33 } 2.34 2.35 @@ -28,5 +29,5 @@ 2.36 genpkg_rules() 2.37 { 2.38 mkdir -p $fs/usr 2.39 - cp -a $install/usr/bin $fs/usr/ 2.40 + cp -a $install/usr/bin $fs/usr/ 2.41 }