mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
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
16 lines
348 B
Ruby
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
|