Commit 9bae3b8c authored by Damian Montero's avatar Damian Montero Committed by GitHub

Merge pull request #281 from lyxell/add-a2ps

Add a2ps and dependencies
parents 765c7853 5f6a6963
require "package"
class A2ps < Package
version "4.14"
source_url "http://ftp.gnu.org/gnu/a2ps/a2ps-4.14.tar.gz"
source_sha1 "365abbbe4b7128bf70dad16d06e23c5701874852"
depends_on "gperf"
depends_on "filecmd"
def self.build
system "./configure"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
require "package"
class Gperf < Package
version "3.0.4"
source_url "http://ftp.gnu.org/pub/gnu/gperf/gperf-3.0.4.tar.gz"
source_sha1 "e32d4aff8f0c730c9a56554377b2c6d82d0951b8"
def self.build
system "./configure"
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