mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Cowsay! Cows, because why the hell not. * Fortune! * Fortunes for fortune! * Lolcats!!!1!11!! ~meow~ * TRAINS I really hope nobody's trying to `crew install ls`. * Delete lolcat.rb They can just use gem to install this. * MOO Homepage and prefix * fortune uwu change to use `sed` and `install` * steam locomotive lol switch to `sed` and `install`
15 lines
533 B
Ruby
15 lines
533 B
Ruby
require 'package'
|
|
|
|
class Fortunes < Package
|
|
description 'Over 15000 cookies for the fortune program.'
|
|
homepage 'https://packages.debian.org/sid/fortunes'
|
|
version '1.99.1'
|
|
source_url 'http://cdn-fastly.deb.debian.org/debian/pool/main/f/fortune-mod/fortune-mod_1.99.1.orig.tar.gz'
|
|
source_sha256 'fc51aee1f73c936c885f4e0f8b6b48f4f68103e3896eaddc6a45d2b71e14eace'
|
|
|
|
def self.install
|
|
system "mkdir -pv #{CREW_DEST_PREFIX}/share/games/fortunes"
|
|
system "mv datfiles/* #{CREW_DEST_PREFIX}/share/games/fortunes/"
|
|
end
|
|
end
|