Update packages and abstract the library directory

Add pre-built binaries

Restore chicken and add pre-built binaries for weechat and wkhtmltox

Fix error in wkhtmltox.rb
This commit is contained in:
Ed Reel
2018-04-27 01:02:07 -05:00
parent 51806c8164
commit e8af2ae286
23 changed files with 321 additions and 346 deletions

View File

@@ -3,31 +3,29 @@ require 'package'
class Vidstab < Package
description 'Transcode video stabilization plugin.'
homepage 'http://public.hronopik.de/vid.stab/'
version '0.98b'
source_url 'https://github.com/georgmartius/vid.stab/archive/release-0.98b.tar.gz'
source_sha256 '530f0bf7479ec89d9326af3a286a15d7d6a90fcafbb641e3b8bdb8d05637d025'
version '1.1.0'
source_url 'https://github.com/georgmartius/vid.stab/archive/v1.1.0.tar.gz'
source_sha256 '14d2a053e56edad4f397be0cb3ef8eb1ec3150404ce99a426c4eb641861dc0bb'
binary_url ({
aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/vidstab-0.98b-chromeos-armv7l.tar.xz',
armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/vidstab-0.98b-chromeos-armv7l.tar.xz',
i686: 'https://dl.bintray.com/chromebrew/chromebrew/vidstab-0.98b-chromeos-i686.tar.xz',
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/vidstab-0.98b-chromeos-x86_64.tar.xz',
aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/vidstab-1.1.0-chromeos-armv7l.tar.xz',
armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/vidstab-1.1.0-chromeos-armv7l.tar.xz',
i686: 'https://dl.bintray.com/chromebrew/chromebrew/vidstab-1.1.0-chromeos-i686.tar.xz',
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/vidstab-1.1.0-chromeos-x86_64.tar.xz',
})
binary_sha256 ({
aarch64: '27057da6800431584c140aaac9d64cb054a03d7e8ad534a4760bc2e5e1d92b3f',
armv7l: '27057da6800431584c140aaac9d64cb054a03d7e8ad534a4760bc2e5e1d92b3f',
i686: 'dc7494886a6098c58cd7c6394044aef79df1dd9fad607c38611391147f31d2de',
x86_64: '7769fa40e362f5914ce80533ec87c6dd61310efb1eddf673a87bf81aa04b404b',
aarch64: 'bce661392dce20dd457aac266b8fd54d9baab87d817f5975ab6705950b77a272',
armv7l: 'bce661392dce20dd457aac266b8fd54d9baab87d817f5975ab6705950b77a272',
i686: '68014e89423663b16267d08d5cb2342356f81eeb92cad863a6a97d8b536466d8',
x86_64: '3557c98666d254d12bd738595ea6147dea7f7b354a24bd246832084fe1bcddb6',
})
depends_on 'cmake'
def self.build
system "cmake ."
system "make"
system "cmake . -DCMAKE_INSTALL_PREFIX=#{CREW_PREFIX}"
system 'make'
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
system "make", "LIBDIR=#{CREW_LIB_PREFIX}", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end