Files
chromebrew/packages/plplot.rb
Maximilian Downey Twiss f6dc1d8d4e Derive binary_url in package.rb (#7082)
* Add binary_compression value to each package

* Remove binary_url values and arrays

* Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
2024-01-25 11:03:31 -05:00

57 lines
1.5 KiB
Ruby

require 'package'
class Plplot < Package
description 'PLplot is a cross-platform software package for creating scientific plots'
homepage 'http://plplot.sourceforge.net/'
version '5.15.0'
license 'LGPL-2'
compatibility 'all'
source_url 'https://downloads.sourceforge.net/project/plplot/plplot/5.15.0%20Source/plplot-5.15.0.tar.gz'
source_sha256 'b92de4d8f626a9b20c84fc94f4f6a9976edd76e33fb1eae44f6804bdcc628c7b'
binary_compression 'tar.xz'
binary_sha256({
aarch64: '13f6b739b87349e98ec82b542d0bce70b982f76b7e72ede1ff22d8f020bc05d3',
armv7l: '13f6b739b87349e98ec82b542d0bce70b982f76b7e72ede1ff22d8f020bc05d3',
i686: 'c3026a75081479d1722ef82f9e9c917eba87eea2c574ef2ea098479525ce5b1f',
x86_64: '6aa2d9509f13283391d604ae0e3d9ff501f0ccf3a527ac0fe6e584d20d2f30a0'
})
depends_on 'jdk8'
depends_on 'libharu'
depends_on 'lua'
depends_on 'ocaml'
depends_on 'pango'
depends_on 'qhull'
depends_on 'qtsvg'
depends_on 'swig'
depends_on 'tk'
depends_on 'wxwidgets'
def self.build
Dir.mkdir 'build'
Dir.chdir 'build' do
system 'cmake',
'-DBUILD_TEST=ON',
'-DENABLE_DYNDRIVERS=OFF',
'-DUSE_INCRTCL_VERSION_4=ON',
"-DLIB_DIR=#{CREW_LIB_PREFIX}",
"-DCMAKE_INSTALL_PREFIX=#{CREW_PREFIX}",
'..'
system 'make'
end
end
def self.check
Dir.chdir 'build' do
# system 'ctest'
end
end
def self.install
Dir.chdir 'build' do
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end
end