Commit 64fcdf56 authored by Michał Siwek's avatar Michał Siwek

Merge branch 'richard-fisher-master'

parents be4db3b9 b9292d65
require 'package'
class Imagemagick < Package
version '6.9.2-10'
source_url 'http://www.imagemagick.org/download/releases/ImageMagick-6.9.2-10.tar.xz'
source_sha1 'd0b3fdf8f25856bf0058716703f7bf989560d2ce'
depends_on 'pkgconfig'
def self.build
system "./configure --libdir=/usr/local/lib#{SHORTARCH}/ CC=\"gcc -m#{SHORTARCH}\" CFLAGS=\" -fPIC\" --without-python"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
require 'package'
class Libxslt < Package
version '1.1.28'
source_url 'http://xmlsoft.org/sources/libxslt-1.1.28.tar.gz'
source_sha1 '4df177de629b2653db322bfb891afa3c0d1fa221'
def self.build
system "./configure --libdir=/usr/local/lib#{SHORTARCH}/ CC=\"gcc -m#{SHORTARCH}\" CFLAGS=\" -fPIC\" --without-python"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment