mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
18 lines
491 B
Ruby
18 lines
491 B
Ruby
require 'package'
|
|
|
|
class Rtmpdump < Package
|
|
description 'rtmpdump is a toolkit for RTMP streams.'
|
|
homepage 'https://rtmpdump.mplayerhq.hu/'
|
|
version 'fa8646d'
|
|
source_url 'https://git.ffmpeg.org/gitweb/rtmpdump.git/snapshot/fa8646daeb19dfd12c181f7d19de708d623704c0.tar.gz'
|
|
source_sha256 'dba4d4d2e1c7de6884b01d98194b83cab6784669089fa3c919152087a3a38fd2'
|
|
|
|
def self.build
|
|
system "make"
|
|
end
|
|
|
|
def self.install
|
|
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
|
|
end
|
|
end
|