homebrew-core/Formula/libnet.rb
Dominyk Tiller c4d9c2a99c formule: migrate various patches (part 1)
a2ps: migrate patches
argp-standalone: migrate patch
autotrace: migrate patches
avidemux: reference secure link
bibtex2html: migrate patches
bsdmake: migrate patches
cctools: migrate patches
cdparanoia: migrate patches
cdrdao: reference secure links
center-im: migrate patch
clisp: migrate patch
clucene: migrate patches
cvs: migrate to sha256
daemon: migrate patch
dvdrtools: migrate patches
exim: style nits
exim: migrate option
ghostscript: migrate patch
glib: migrate patch
gpsd: migrate patch
graphviz: migrate patch
gtkglext: migrate patches
gupnp: migrate patch
hping: migrate patches
id3lib: migrate patches
jigdo: migrate patch
jove: migrate patch
ld64: migrate patches
libcanberra: migrate patch
libgcrypt: migrate patch
libinfinity: migrate patch
liblinear: migrate patch
libmms: migrate patch
libnet: migrate patch
lsdvd: migrate patches
2015-10-07 19:36:24 +01:00

33 lines
1.2 KiB
Ruby

class Libnet < Formula
desc "C library for creating IP packets"
homepage "https://github.com/sam-github/libnet"
url "https://downloads.sourceforge.net/project/libnet-dev/libnet-1.1.6.tar.gz"
sha256 "d392bb5825c4b6b672fc93a0268433c86dc964e1500c279dc6d0711ea6ec467a"
bottle do
cellar :any
revision 1
sha256 "26a496e3607f2639592617769522a790259c834f91c05d91721331fe6f1ad0c4" => :el_capitan
sha1 "4fde2d99706c15ca126f6f5ac83226288d0de5d0" => :yosemite
sha1 "8bcb8736a1264d1ec6c44312e36f81ec7a7720c6" => :mavericks
sha1 "14f7d1d0c595c08c0bbcc4182ff6eabca6df5c8a" => :mountain_lion
end
depends_on "automake" => :build
depends_on "autoconf" => :build
depends_on "libtool" => :build
# Fix raw sockets support
patch :p0 do
url "https://raw.githubusercontent.com/Homebrew/patches/a689647/libnet/patch-configure.in.diff"
sha256 "3c1ca12609d83372cf93223d69e903eb6e137ed7a4749a8ee19c21bd43f97f18"
end
def install
system "autoreconf", "-fvi"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
inreplace "src/libnet_link_bpf.c", "#include <net/bpf.h>", "" # Per MacPorts
system "make", "install"
end
end