wok-current rev 17140
Add discount and devel.
author | necrophcodr <tcg.thegamer@gmail.com> |
---|---|
date | Wed Sep 10 11:13:57 2014 +0200 (2014-09-10) |
parents | 71c50a9bf9ca |
children | f44ef80ff9e2 |
files | discount-dev/receipt discount/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/discount-dev/receipt Wed Sep 10 11:13:57 2014 +0200 1.3 @@ -0,0 +1,21 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="discount-dev" 1.7 +VERSION="2.1.7" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="a C implementation of the markdown spec - dev files" 1.10 +MAINTAINER="tcg.thegamer@gmail.com" 1.11 +LICENSE="BSD3" 1.12 +WEB_SITE="http://www.pell.portland.or.us/~orc/Code/markdown/" 1.13 +HOST_ARCH="i486 arm" 1.14 +WANTED="discount" 1.15 + 1.16 +DEPENDS="discount" 1.17 + 1.18 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.19 +genpkg_rules() 1.20 +{ 1.21 + cd $src 1.22 + tar xvf $src/build/discount.tgz -C $fs 1.23 + rm -rf $fs/usr/bin 1.24 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/discount/receipt Wed Sep 10 11:13:57 2014 +0200 2.3 @@ -0,0 +1,34 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="discount" 2.7 +VERSION="2.1.7" 2.8 +CATEGORY="utilities" 2.9 +SHORT_DESC="a C implementation of the markdown spec" 2.10 +MAINTAINER="tcg.thegamer@gmail.com" 2.11 +LICENSE="BSD3" 2.12 +TARBALL="${PACKAGE}-${VERSION}.tgz" 2.13 +WEB_SITE="http://www.pell.portland.or.us/~orc/Code/markdown" 2.14 +#WGET_URL="${WEB_SITE}/${TARBALL}" 2.15 +WGET_URL="http://necrophcodr.me:8088/tarball/trunk" 2.16 +HOST_ARCH="i486 arm" 2.17 + 2.18 +DEPENDS="" 2.19 +BUILD_DEPENDS="tup" 2.20 + 2.21 +# Rules to configure and make the package. 2.22 +compile_rules() 2.23 +{ 2.24 + cd $src 2.25 + ./configure.sh --prefix=/usr && 2.26 + tup init && 2.27 + tup upd && 2.28 + mkdir -p $DESTDIR 2.29 + tar xvf build/discount.tgz -C $DESTDIR usr/bin/markdown 2.30 +} 2.31 + 2.32 + 2.33 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.34 +genpkg_rules() 2.35 +{ 2.36 + cp -a $install/usr $fs/ 2.37 +}