mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
Add ffmpeg package dependencies
This commit is contained in:
16
packages/libmp3lame.rb
Normal file
16
packages/libmp3lame.rb
Normal 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
|
||||
Reference in New Issue
Block a user