aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/fdclone.rb46
1 files changed, 46 insertions, 0 deletions
diff --git a/Library/Formula/fdclone.rb b/Library/Formula/fdclone.rb
new file mode 100644
index 000000000..21bcb3335
--- /dev/null
+++ b/Library/Formula/fdclone.rb
@@ -0,0 +1,46 @@
+require 'formula'
+
+class Fdclone < Formula
+ homepage 'http://hp.vector.co.jp/authors/VA012337/soft/fd/'
+ url 'http://hp.vector.co.jp/authors/VA012337/soft/fd/FD-3.01a.tar.gz'
+ sha1 '5d4f90ccaee67fadcc5d776f90bbe2fd760c4cdd'
+
+ depends_on 'nkf' => :build
+
+ def patches
+ DATA
+ end
+
+ def install
+ ENV.j1
+ system "make", "PREFIX=#{prefix}", "all"
+ system "make", "MANTOP=#{man}", "install"
+
+ %w(README FAQ HISTORY LICENSES TECHKNOW ToAdmin).each do |file|
+ system "nkf", "-w", "--overwrite", file
+ prefix.install "#{file}.eng" => file
+ prefix.install file => "#{file}.ja"
+ end
+
+ share.install "_fdrc" => "fd2rc.dist"
+ end
+
+ def caveats; <<-EOS.undent
+ To install the initial config file:
+ install -c -m 0644 #{share}/fd2rc.dist ~/.fd2rc
+ EOS
+ end
+end
+
+__END__
+diff --git a/machine.h b/machine.h
+index 8bc70ab..39b0d28 100644
+--- a/machine.h
++++ b/machine.h
+@@ -1449,4 +1449,6 @@ typedef unsigned long u_long;
+ #define GETTODARGS 2
+ #endif
+
++#define USEDATADIR
++
+ #endif /* !__MACHINE_H_ */