changeset 2973:d72314d6cea4

add imagemagick
author hanwen <hanwen@lilypond.org>
date Wed, 13 Dec 2006 15:30:48 +0100
parents 408c5a203c1e
children e1b1550e31f5
files GNUmakefile specs/imagemagick.py
diffstat 2 files changed, 10 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/GNUmakefile	Tue Dec 12 19:57:25 2006 +0100
+++ b/GNUmakefile	Wed Dec 13 15:30:48 2006 +0100
@@ -266,7 +266,7 @@
 # -icoutils: lilypond mingw icons
 # -distcc: nonstandard (eg. MacOS)
 # -freetype: for bootstrapping fontconfig
-#
+# -imagemagick: for lilypond web site
 
 local:
 	$(PYTHON) gub-builder.py $(LOCAL_GUB_BUILDER_OPTIONS) -p local build \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/specs/imagemagick.py	Wed Dec 13 15:30:48 2006 +0100
@@ -0,0 +1,9 @@
+import toolpackage
+
+class Imagemagick (toolpackage.ToolBuildSpec):
+    def __init__ (self, settings):
+        toolpackage.ToolBuildSpec.__init__ (self, settings)
+        self.with (mirror='ftp://ftp.nluug.nl/pub/ImageMagick/ImageMagick-%(version)s-1.tar.bz2',
+                   version='6.3.1')
+    def license_file (self):
+        return '%(srcdir)s/LICENSE'