# HG changeset patch # User Claudinei Pereira # Date 1243813789 0 # Node ID 6c5aa6ce38ee66b88dc079856a0ddf7c74bfe5fc # Parent 393a62dfce41a70bf5dfb6dd3d12798745a8d1c9 Add: pypdf diff -r 393a62dfce41 -r 6c5aa6ce38ee pypdf/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pypdf/receipt Sun May 31 23:49:49 2009 +0000 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="pypdf" +SOURCE="pyPdf" +VERSION="1.12" +CATEGORY="development" +SHORT_DESC="A Pure-Python library built as a PDF tookit." +MAINTAINER="claudinei@slitaz.org" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://pybrary.net/pyPdf" +WGET_URL="$WEB_SITE/$TARBALL" +DEPENDS="python" +BUILD_DEPENDS="python python-dev" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py install --root=$PWD/_pkg +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr $fs +} +