Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Add sfnt2woff formula #14433

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 16 additions & 0 deletions Library/Formula/sfnt2woff.rb
@@ -0,0 +1,16 @@
require 'formula'

class Sfnt2woff < Formula
homepage 'http://people.mozilla.com/~jkew/woff/'
url 'http://people.mozilla.com/~jkew/woff/woff-code-latest.zip'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This isn't a stable (versioned) download, so the formula will break each time this file is updated.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay I'll seem if I can get the author to create versioned downloads.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Though it hasn't changed since 2009

sha1 '59879f1bdeeafce7fc9d4b51406e80d7a4cd0293'

def install
system 'make all'
bin.install 'sfnt2woff'
end

def test
system 'sfnt2woff'
end
end