ea59bea593
Obtained from: https://github.com/Juniper/libxo Requested by: Phil Shafer <phil@juniper.net> Revisions 276253 & 276273 were incorporated into 0.2.0. Revision 276260 has been merged-in.
21 lines
496 B
Plaintext
21 lines
496 B
Plaintext
#
|
|
# Homebrew formula file for libxo
|
|
# https://github.com/mxcl/homebrew
|
|
#
|
|
|
|
require 'formula'
|
|
|
|
class Libxo < Formula
|
|
homepage 'https://github.com/Juniper/@PACKAGE-NAME@'
|
|
url 'https://github.com/Juniper/@PACKAGE_NAME@/releases/@PACKAGE_VERSION@/@PACKAGE_NAME@-@PACKAGE_VERSION@.tar.gz'
|
|
sha1 '__SHA1__'
|
|
|
|
depends_on 'libtool' => :build
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|