diff options
| author | Baptiste Fontaine | 2015-04-17 01:36:03 +0200 |
|---|---|---|
| committer | Xu Cheng | 2015-04-17 14:12:52 +0800 |
| commit | 233cecd00ce47e73d61a5fd63892b05089a32fcb (patch) | |
| tree | b0a171fc68b2073e6039b05a94a900b094c970ed /Library | |
| parent | a81e558e82c602ce54ad5984cc437258c3057b79 (diff) | |
| download | homebrew-233cecd00ce47e73d61a5fd63892b05089a32fcb.tar.bz2 | |
ficy 1.0.19
Closes #38725.
Signed-off-by: Xu Cheng <xucheng@me.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/ficy.rb | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/Library/Formula/ficy.rb b/Library/Formula/ficy.rb index ffb347520..331d44a19 100644 --- a/Library/Formula/ficy.rb +++ b/Library/Formula/ficy.rb @@ -1,12 +1,17 @@ -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' + homepage "http://www.thregr.org/~wavexx/software/fIcy/" + url "http://www.thregr.org/~wavexx/software/fIcy/releases/fIcy-1.0.19.tar.gz" + sha256 "397df996fd63ce8608e62b195af61e88b0571aac01a51f1935dbf639c5424dcb" + + head "https://github.com/wavexx/fIcy.git" def install system "make" - bin.install 'fIcy', 'fPls', 'fResync' + bin.install "fIcy", "fPls", "fResync" + end + + test do + cp test_fixtures("test.mp3"), testpath + system "#{bin}/fResync", "-n", "1", "test.mp3" end end |
