libdnet: fix shared library extension
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
parent
caf146863c
commit
9215fab34e
1 changed files with 7 additions and 0 deletions
|
@ -6,6 +6,13 @@ class Libdnet < Formula
|
|||
md5 '9253ef6de1b5e28e9c9a62b882e44cc9'
|
||||
|
||||
def install
|
||||
# "manual" autoreconf to get '.dylib' extension on shared lib
|
||||
system "aclocal --force -I config"
|
||||
system "glibtoolize --copy --force"
|
||||
system "autoconf --force"
|
||||
system "autoheader --force"
|
||||
system "automake --add-missing --copy --force-missing"
|
||||
|
||||
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}",
|
||||
"--mandir=#{man}"
|
||||
|
|
Loading…
Reference in a new issue