New formula: atkmm
C++ bindings for atk; previously part of the gtkmm package. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
parent
5b410f5979
commit
f4cea4c202
1 changed files with 16 additions and 0 deletions
16
Formula/atkmm.rb
Normal file
16
Formula/atkmm.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
require 'formula'
|
||||
|
||||
class Atkmm < Formula
|
||||
homepage 'http://www.gtkmm.org'
|
||||
url 'http://ftp.acc.umu.se/pub/GNOME/sources/atkmm/2.22/atkmm-2.22.6.tar.bz2'
|
||||
sha256 '923d0d638aba70c7f5feff1fc296e0546978afbb049f404b77d97d90dde4e88f'
|
||||
|
||||
depends_on 'pkg-config' => :build
|
||||
depends_on 'atk'
|
||||
depends_on 'glibmm'
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue