# HG changeset patch # User Christophe Lincoln # Date 1393064581 -3600 # Node ID 45e18b828d5ee451763329ab5045db3873784465 # Parent 6fe50f4887f2fd8160a4abec8bdb7c751b5fce2e Add asciidoc (text based documentation) diff -r 6fe50f4887f2 -r 45e18b828d5e asciidoc/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/asciidoc/receipt Sat Feb 22 11:23:01 2014 +0100 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="asciidoc" +VERSION="8.6.9" +CATEGORY="system-tools" +SHORT_DESC="Text based document generation" +MAINTAINER="pankso@slitaz.org" +LICENSE="GPL2" +TARBALL="$PACKAGE-${VERSION}.tar.gz" +WEB_SITE="http://www.methods.co.nz/asciidoc/" +WGET_URL="$SF_MIRROR/project/asciidoc/asciidoc/$VERSION/$TARBALL" + +DEPENDS="python" +BUILD_DEPENDS="" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure \ + --sysconfdir=/etc \ + $CONFIGURE_ARGS && + make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/etc $fs + cp -a $install/usr/bin $fs/usr +}