[csw-devel] SF.net SVN: gar:[6147] csw/mgar/pkg
dmichelsen at users.sourceforge.net
dmichelsen at users.sourceforge.net
Mon Aug 31 15:29:39 CEST 2009
Revision: 6147
http://gar.svn.sourceforge.net/gar/?rev=6147&view=rev
Author: dmichelsen
Date: 2009-08-31 13:29:39 +0000 (Mon, 31 Aug 2009)
Log Message:
-----------
pigz: Initial commit
Added Paths:
-----------
csw/mgar/pkg/pigz/
csw/mgar/pkg/pigz/branches/
csw/mgar/pkg/pigz/tags/
csw/mgar/pkg/pigz/trunk/
csw/mgar/pkg/pigz/trunk/Makefile
csw/mgar/pkg/pigz/trunk/checksums
csw/mgar/pkg/pigz/trunk/files/
Property changes on: csw/mgar/pkg/pigz/trunk
___________________________________________________________________
Added: svn:ignore
+ cookies
download
work
Added: svn:externals
+ gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2
Added: csw/mgar/pkg/pigz/trunk/Makefile
===================================================================
--- csw/mgar/pkg/pigz/trunk/Makefile (rev 0)
+++ csw/mgar/pkg/pigz/trunk/Makefile 2009-08-31 13:29:39 UTC (rev 6147)
@@ -0,0 +1,49 @@
+GARNAME = pigz
+GARVERSION = 2.1.5
+CATEGORIES = utils
+
+DESCRIPTION = A parallel implementation of gzip
+define BLURB
+ pigz, which stands for parallel implementation of gzip, is a fully
+ functional replacement for gzip that exploits multiple processors
+ and multiple cores to the hilt when compressing data. pigz was written
+ by Mark Adler, and uses the zlib and pthread libraries.
+endef
+
+MASTER_SITES = http://www.zlib.net/pigz/
+DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz
+
+# We define upstream file regex so we can be notifed of new upstream software release
+UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz
+
+# If the url used to check for software update is different of MASTER_SITES, then
+# uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES
+# UPSTREAM_MASTER_SITES =
+
+LICENSE = README
+
+REQUIRED_PKGS = CSWzlib
+
+REQUESTED_ISAS = $(ISALIST_$(GARCOMPILER))
+
+CONFIGURE_SCRIPTS =
+BUILD_SCRIPTS = custom
+INSTALL_SCRIPTS = custom
+TEST_SCRIPTS =
+
+include gar/category.mk
+
+build-custom:
+ cd $(WORKSRC) && $(CC) $(CFLAGS) -c yarn.c
+ cd $(WORKSRC) && $(CC) $(CFLAGS) -c pigz.c
+ cd $(WORKSRC) && $(CC) $(LDFLAGS) -o pigz yarn.o pigz.o -lpthread -lz
+ @$(MAKECOOKIE)
+
+install-custom:
+ ginstall -d $(DESTDIR)$(bindir)
+ ginstall $(WORKSRC)/pigz $(DESTDIR)$(bindir)
+ ginstall -d $(DESTDIR)$(mandir)/man1
+ ginstall $(WORKSRC)/pigz.1 $(DESTDIR)$(mandir)/man1
+ ginstall -d $(DESTDIR)$(docdir)/$(GARNAME)
+ ginstall $(WORKSRC)/pigz.pdf $(DESTDIR)$(docdir)/$(GARNAME)
+ @$(MAKECOOKIE)
Added: csw/mgar/pkg/pigz/trunk/checksums
===================================================================
--- csw/mgar/pkg/pigz/trunk/checksums (rev 0)
+++ csw/mgar/pkg/pigz/trunk/checksums 2009-08-31 13:29:39 UTC (rev 6147)
@@ -0,0 +1 @@
+580873165ef3a369674f0c0af4c96d67 download/pigz-2.1.5.tar.gz
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list