blob: 0528eceb7ff427bc98845f8bf78f3e3068f07aab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
class Multimarkdown < Formula
homepage 'http://fletcherpenney.net/multimarkdown/'
url 'https://github.com/fletcher/peg-multimarkdown/tarball/3.0'
md5 '607387dc346a71203f100564874294fe'
head 'https://github.com/fletcher/peg-multimarkdown.git', :branch => 'development'
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'glib'
def install
system "make"
bin.install 'multimarkdown'
bin.install Dir['Support/bin/*']
bin.install Dir['scripts/*']
end
end
|