# HG changeset patch # User Christophe Lincoln # Date 1389136715 -3600 # Node ID 39ed5c50b3df6fa4f70981058d31cab4b71340e2 # Parent 9ba8ad30953297fd6420b4b51cd0234002c3ed15 Add TinyCM - A new content manager for SliTaz diff -r 9ba8ad309532 -r 39ed5c50b3df tinycm/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tinycm/receipt Wed Jan 08 00:18:35 2014 +0100 @@ -0,0 +1,26 @@ +# SliTaz package receipt. + +PACKAGE="tinycm" +VERSION="1.0" +CATEGORY="network" +SHORT_DESC="Small and elegent CGI content manager." +MAINTAINER="pankso@slitaz.org" +LICENSE="BSD" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.slitaz.org/" +WGET_URL="http://hg.slitaz.org/$PACKAGE/archive/$VERSION.tar.gz" + +# Rules to configure and make the package. +compile_rules() +{ + make && make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs + cp -a $install/* $fs + cd $fs/var/www + ln -s cgi-bin/tinycm . +}