homebrew-core/Formula/ahcpd.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

38 lines
1.1 KiB
Ruby

class Ahcpd < Formula
desc "Autoconfiguration protocol for IPv6 and IPv6/IPv4 networks"
homepage "http://www.pps.univ-paris-diderot.fr/~jch/software/ahcp/"
url "http://www.pps.univ-paris-diderot.fr/~jch/software/files/ahcpd-0.53.tar.gz"
sha256 "a4622e817d2b2a9b878653f085585bd57f3838cc546cca6028d3b73ffcac0d52"
patch :DATA
def install
system "make", "LDLIBS=''"
system "make", "install", "PREFIX=", "TARGET=#{prefix}"
end
end
__END__
diff --git a/Makefile b/Makefile
index e52eeb7..28e1043 100644
--- a/Makefile
+++ b/Makefile
@@ -40,8 +40,8 @@ install.minimal: all
chmod +x $(TARGET)/etc/ahcp/ahcp-config.sh
install: all install.minimal
- mkdir -p $(TARGET)$(PREFIX)/man/man8/
- cp -f ahcpd.man $(TARGET)$(PREFIX)/man/man8/ahcpd.8
+ mkdir -p $(TARGET)$(PREFIX)/share/man/man8/
+ cp -f ahcpd.man $(TARGET)$(PREFIX)/share/man/man8/ahcpd.8
.PHONY: uninstall
@@ -49,7 +49,7 @@ uninstall:
-rm -f $(TARGET)$(PREFIX)/bin/ahcpd
-rm -f $(TARGET)$(PREFIX)/bin/ahcp-config.sh
-rm -f $(TARGET)$(PREFIX)/bin/ahcp-dummy-config.sh
- -rm -f $(TARGET)$(PREFIX)/man/man8/ahcpd.8
+ -rm -f $(TARGET)$(PREFIX)/share/man/man8/ahcpd.8
.PHONY: clean