aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ren.rb
diff options
context:
space:
mode:
authorAndrea Francia2012-03-30 19:32:17 +0200
committerAdam Vandenberg2012-06-27 21:31:35 -0700
commit20cdf74e0876b9f44e66f5b6be7331817ef84d8c (patch)
tree4e9429e18388a343da9a4881ab25060f266664f6 /Library/Formula/ren.rb
parentef6afb3f8a8a54c95882c9f8cd8f4f8fbb727d32 (diff)
downloadhomebrew-20cdf74e0876b9f44e66f5b6be7331817ef84d8c.tar.bz2
ren 1.0
Closes #11323. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/ren.rb')
-rw-r--r--Library/Formula/ren.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/ren.rb b/Library/Formula/ren.rb
new file mode 100644
index 000000000..487a6764a
--- /dev/null
+++ b/Library/Formula/ren.rb
@@ -0,0 +1,13 @@
+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'
+ sha1 '3f21fc85f5996c85cc3b3dd09ceb9cb4d90f36a9'
+
+ def install
+ system "make"
+ bin.install "ren"
+ man1.install "ren.1"
+ end
+end