Add ffmpeg package dependencies

This commit is contained in:
Ed Reel
2017-05-28 15:15:00 -05:00
parent fcbfaab263
commit f1fea832a9
24 changed files with 474 additions and 5 deletions

16
packages/libmp3lame.rb Normal file
View File

@@ -0,0 +1,16 @@
require 'package'
class Libmp3lame < Package
version '3.99.5'
source_url 'https://downloads.sourceforge.net/project/lame/lame/3.99/lame-3.99.5.tar.gz'
source_sha1 '03a0bfa85713adcc6b3383c12e2cc68a9cfbf4c4'
def self.build
system "./configure"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end