mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
21 lines
504 B
Ruby
21 lines
504 B
Ruby
require 'package'
|
|
|
|
class Libfrei0r < Package
|
|
description 'Minimalistic API for a collection of free video effect plugins.'
|
|
homepage 'https://frei0r.dyne.org/'
|
|
version '1.6.0'
|
|
source_url 'https://github.com/dyne/frei0r/archive/v1.6.0.tar.gz'
|
|
source_sha256 '63cae9d20d23b9d9e1ffb3fa053295914417c3e005194c077a0753d04636831c'
|
|
|
|
depends_on 'cmake'
|
|
|
|
def self.build
|
|
system "cmake ."
|
|
system "make"
|
|
end
|
|
|
|
def self.install
|
|
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
|
|
end
|
|
end
|