Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Add formula for ren #11323

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 18 additions & 0 deletions Library/Formula/ren.rb
@@ -0,0 +1,18 @@
require 'formula'

class Ren < Formula
homepage 'http://pdb.finkproject.org/pdb/package.php/ren'
url 'http://www.ibiblio.org/pub/Linux/utils/file/ren-1.0.tar.gz'
md5 '245453453a8bd1c0bf7d03880b97d632'

def install
system "make"
bin.install "ren"
man1.install "ren.1"
end

def test
system 'ren'
end

end