Commit 5936ce16 authored by satmandu's avatar satmandu Committed by GitHub

fribidi -> 1.0.10 (#4673)

parent 2b437d26
......@@ -3,30 +3,19 @@ require 'package'
class Fribidi < Package
description 'GNU FriBidi is an implementation of the Unicode Bidirectional Algorithm (bidi).'
homepage 'https://www.fribidi.org/'
version '1.0.9'
version '1.0.10'
compatibility 'all'
source_url 'https://github.com/fribidi/fribidi/releases/download/v1.0.9/fribidi-1.0.9.tar.xz'
source_sha256 'c5e47ea9026fb60da1944da9888b4e0a18854a0e2410bbfe7ad90a054d36e0c7'
source_url 'https://github.com/fribidi/fribidi/archive/v1.0.10.tar.gz'
source_sha256 '3ebb19c4184ed6dc324d2e291d7465bc6108a20be019f053f33228e07e879c4f'
binary_url ({
aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/fribidi-1.0.9-chromeos-armv7l.tar.xz',
armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/fribidi-1.0.9-chromeos-armv7l.tar.xz',
i686: 'https://dl.bintray.com/chromebrew/chromebrew/fribidi-1.0.9-chromeos-i686.tar.xz',
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/fribidi-1.0.9-chromeos-x86_64.tar.xz',
})
binary_sha256 ({
aarch64: '9726846e950c5aa4ba2587a7e2a4057ca36718e606980fcef18a47990a967e5e',
armv7l: '9726846e950c5aa4ba2587a7e2a4057ca36718e606980fcef18a47990a967e5e',
i686: 'a19caf91d86c53eb02398361e93ac8afdb042e661a22222d7ca63caab92fe205',
x86_64: '17c2146657860ec4664fb7d247383c40859d3adf87fdf3c9f343e989cefcafb3',
})
def self.build
system "./configure --prefix=#{CREW_PREFIX} --libdir=#{CREW_LIB_PREFIX}"
system "make"
system "meson #{CREW_MESON_OPTIONS} -Ddocs=false -Dtests=false build"
system 'meson configure build'
system 'ninja -v -C build'
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
system "DESTDIR=#{CREW_DEST_DIR} ninja -C build install"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment