blob: ffb34752024aecd35c6bde84de2cdab34e63296a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Ficy < Formula
homepage 'http://www.thregr.org/~wavexx/software/fIcy/'
url 'http://www.thregr.org/~wavexx/software/fIcy/releases/fIcy-1.0.18.tar.gz'
sha1 '326d1b5417e9507974df94d227c7e7e476b7598f'
def install
system "make"
bin.install 'fIcy', 'fPls', 'fResync'
end
end
|