mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
Add ffmpeg package dependencies
This commit is contained in:
18
packages/vidstab.rb
Normal file
18
packages/vidstab.rb
Normal file
@@ -0,0 +1,18 @@
|
||||
require 'package'
|
||||
|
||||
class Vidstab < Package
|
||||
version '0.98b'
|
||||
source_url 'https://github.com/georgmartius/vid.stab/archive/release-0.98b.tar.gz'
|
||||
source_sha1 '1030a1baa9b2cba844758a6cd8dd5d5fc23f9cd9'
|
||||
|
||||
depends_on 'cmake'
|
||||
|
||||
def self.build
|
||||
system "cmake ."
|
||||
system "make"
|
||||
end
|
||||
|
||||
def self.install
|
||||
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user