aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorChristian Köstlin2012-06-08 11:12:57 +0200
committerAdam Vandenberg2012-10-30 08:30:38 -0700
commitcea4ffede201d440d41528ec7c77995f65896999 (patch)
treee93168f40605b95ed81bea6ba9eae31591e62dd0 /Library
parent8de552ef2f0f6bf8eb818174877c39aa316e1d95 (diff)
downloadhomebrew-cea4ffede201d440d41528ec7c77995f65896999.tar.bz2
h264bitstream 0.1.9
Closes #12668. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/h264bitstream.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/h264bitstream.rb b/Library/Formula/h264bitstream.rb
new file mode 100644
index 000000000..e03b91113
--- /dev/null
+++ b/Library/Formula/h264bitstream.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class H264bitstream < Formula
+ homepage 'http://h264bitstream.sourceforge.net/'
+ url 'http://downloads.sourceforge.net/project/h264bitstream/h264bitstream/0.1.9/h264bitstream-0.1.9.tar.gz'
+ sha1 '5e12e765641e76f86b794f939bf99405c4e4d373'
+
+ def install
+ system './configure', "--prefix=#{prefix}"
+ system 'make install'
+ end
+end