mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* update gnulib_git and babl * icu4c => 73.2 * update boost * rebuild source_highlight * update mold * rebuild cppunit * update libgpgerror * update taglib * update libgcrypt * rebuild librevenge * update gnupg, rebuild yajl, grive * update exempi, rebuild libvisio * update poppler * rebuild eigen libcdr * update gegl * swig rebuild * update tcpflow, ledger * update gdb, rebuild libtorrent * update gimp * rebuild inkscape * rebuild binutils with gdb fallback * gimp rebuild
42 lines
1.8 KiB
Ruby
42 lines
1.8 KiB
Ruby
# Adapted from Arch Linux libvisio PKGBUILD at:
|
|
# https://github.com/archlinux/svntogit-packages/raw/packages/libvisio/trunk/PKGBUILD
|
|
|
|
require 'buildsystems/autotools'
|
|
|
|
class Libvisio < Autotools
|
|
description 'Library providing ability to interpret and import visio diagrams'
|
|
homepage 'https://wiki.documentfoundation.org/DLP/Libraries/libvisio'
|
|
version '0.1.7-2'
|
|
license 'LGPL'
|
|
compatibility 'all'
|
|
source_url 'https://dev-www.libreoffice.org/src/libvisio/libvisio-0.1.7.tar.xz'
|
|
source_sha256 '8faf8df870cb27b09a787a1959d6c646faa44d0d8ab151883df408b7166bea4c'
|
|
|
|
binary_url({
|
|
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/libvisio/0.1.7-2_armv7l/libvisio-0.1.7-2-chromeos-armv7l.tar.zst',
|
|
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/libvisio/0.1.7-2_armv7l/libvisio-0.1.7-2-chromeos-armv7l.tar.zst',
|
|
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/libvisio/0.1.7-2_i686/libvisio-0.1.7-2-chromeos-i686.tar.zst',
|
|
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/libvisio/0.1.7-2_x86_64/libvisio-0.1.7-2-chromeos-x86_64.tar.zst'
|
|
})
|
|
binary_sha256({
|
|
aarch64: '881a0996ae47fc7f1402972814298d56a8f1d5e5d94b8c65f3d02a0a120d23d3',
|
|
armv7l: '881a0996ae47fc7f1402972814298d56a8f1d5e5d94b8c65f3d02a0a120d23d3',
|
|
i686: '51dc3a8c3c3e003423abcf95e2fe1306ef47e75e2311ed96aa747833e02c1ea3',
|
|
x86_64: '576f1a0274289b8ec2c4204af563e71e238824c2d03a2ff521077c90be6f7cb8'
|
|
})
|
|
|
|
depends_on 'boost' => :build
|
|
depends_on 'cppunit' => :build
|
|
depends_on 'doxygen' => :build
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'gperf' => :build
|
|
depends_on 'icu4c' # R
|
|
depends_on 'lcms' # R
|
|
depends_on 'librevenge' # R
|
|
depends_on 'libwpd' => :build
|
|
depends_on 'libwpg' => :build
|
|
depends_on 'libxml2' # R
|
|
depends_on 'zlibpkg' # R
|
|
end
|