mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
23 lines
637 B
Ruby
23 lines
637 B
Ruby
require 'package'
|
|
|
|
class Fortune < Package
|
|
description 'Fortune is a small game that is meant to lighten up your life. It can be used to display a random entry from a cookie file.'
|
|
homepage 'https://www.fefe.de/fortune/'
|
|
version '1.2'
|
|
license 'BSD-3'
|
|
compatibility 'all'
|
|
source_url 'http://dl.fefe.de/fortune-1.2.tar.bz2'
|
|
source_sha256 'cbb246a500366db39ce035632eb4954e09f1e03b28f2c4688864bfa8661b236a'
|
|
|
|
depends_on "fortunes"
|
|
|
|
def self.build
|
|
system "sed -i 's,/usr,#{CREW_PREFIX},' fortune.c"
|
|
system "make"
|
|
end
|
|
|
|
def self.install
|
|
system "install -Dm755 fortune #{CREW_DEST_PREFIX}/bin/fortune"
|
|
end
|
|
end
|