pipes.sh and pipesX.sh (#2790)

* Create pipes_sh.rb

* Create pipesx_sh.rb

* Update pipes_sh.rb

* Update pipesx_sh.rb
This commit is contained in:
Terra Branford
2018-10-25 22:55:47 -04:00
committed by Ed Reel
parent 345ea46983
commit 44f7ff7324
2 changed files with 30 additions and 0 deletions

15
packages/pipes_sh.rb Normal file
View File

@@ -0,0 +1,15 @@
require 'package'
class Pipes_sh < Package
description 'Animated pipes terminal screensaver'
homepage 'https://pipeseroni.github.io/'
version '1.3.0'
source_url 'https://github.com/pipeseroni/pipes.sh/archive/v1.3.0.tar.gz'
source_sha256 '532976dd8dc2d98330c45a8bcb6d7dc19e0b0e30bba8872dcce352361655a426'
depends_on 'ncurses'
def self.install
system "make DESTDIR=#{CREW_DEST_DIR} PREFIX=#{CREW_PREFIX} install"
end
end

15
packages/pipesx_sh.rb Normal file
View File

@@ -0,0 +1,15 @@
require 'package'
class Pipesx_sh < Package
description 'Animated pipes terminal screensaver at an angle'
homepage 'https://pipeseroni.github.io/'
version '1.1.0'
source_url 'https://github.com/pipeseroni/pipesX.sh/archive/v1.1.0.tar.gz'
source_sha256 '82e60efbe3e8ae1c83a9b7e5df7d67ccdad3905dfd478f27d2b2be488603420c'
depends_on 'ncurses'
def self.install
system "make DESTDIR=#{CREW_DEST_DIR} PREFIX=#{CREW_PREFIX} install"
end
end