Commit 3282ab3b authored by lyxell's avatar lyxell Committed by GitHub

Merge pull request #570 from ntchambers/master

Added bind version 9.10.4 and Subversion 1.9.5 (with dependencies)
parents 0430603b e8f49ee8
require 'package'
class Apr < Package
version '1.5.2'
source_url 'http://apache.claz.org//apr/apr-1.5.2.tar.bz2'
source_sha1 '6d757fcf7c687fc300c1066076f2e8380ff8cbc0'
depends_on 'buildessential'
def self.build
system './configure --prefix=/usr/local'
system 'make'
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
require 'package'
class Aprutil < Package
version '1.5.4'
source_url 'http://apache.claz.org//apr/apr-util-1.5.4.tar.gz'
source_sha1 '72cc3ac693b52fb831063d5c0de18723bc8e0095'
depends_on 'apr'
def self.build
system './configure --prefix=/usr/local --with-apr=/usr/local'
system 'make'
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
require 'package'
class Bind < Package
version '9.10.4'
source_url 'https://www.isc.org/downloads/file/bind-9-10-4-p6/'
source_sha1 'c08bef47136b3b88844a4c3b8a6227445fca6f40'
depends_on "buildessential"
depends_on "openssl"
depends_on "libcap"
depends_on "readline"
def self.build
system "BUILD_CC=gcc ./configure --with-randomdev=no --with-ecdsa=yes --with-gost=yes --prefix=/usr/local"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
require 'package'
class Subversion < Package
version '1.9.5'
source_url 'http://apache.mirrors.ionfish.org/subversion/subversion-1.9.5.tar.gz'
source_sha1 'ac9f8ee235f1b667dd6506864af8035aaedfc2d9'
depends_on 'aprutil'
depends_on 'sqlite'
def self.build
system './configure --prefix=/usr/local --with-apr=/usr/local --with-apr-util=/usr/local'
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