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

18
packages/vidstab.rb Normal file
View 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