# HG changeset patch # User Eric Joseph-Alexandre # Date 1264030003 -3600 # Node ID 0aac1ee82f7ebda14a268401afedefd632c0cfac # Parent feae50930315b4ccf36c2e7c59dadcbeacb3f086 Add: distcc, distributed CC. diff -r feae50930315 -r 0aac1ee82f7e distcc/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/distcc/receipt Thu Jan 21 00:26:43 2010 +0100 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="distcc" +VERSION="3.1" +CATEGORY="development" +SHORT_DESC="Distributed compilation for C/C++" +MAINTAINER="erjo@slitaz.org" +DEPENDS="popt lzo" +DEPENDS="popt-dev lzo-dev" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://distcc.org" +WGET_URL="http://distcc.googlecode.com/files/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr +} +