Files
chromebrew/packages/figlet.rb
Casey Strouse 2a0aac1265 Add figlet (2.2.5) package
FIGlet is a program for making large letters out of ordinary text.

Tested as working on Samsung XE50013-K01US.

All tests pass.
https://gist.github.com/cstrouse/fe0c07877dfa06ed4c5594acc276b04f
2017-01-29 09:08:56 -07:00

16 lines
348 B
Ruby

require 'package'
class Figlet < Package
version '2.2.5'
source_url 'ftp://ftp.figlet.org/pub/figlet/program/unix/figlet-2.2.5.tar.gz'
source_sha1 'dda696958c161bd71d6590152c94c4f705415727'
def self.build
system "make", "PREFIX=/usr/local"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end