Files
chromebrew/packages/mapserver.rb
Satadru Pramanik 194b87b188 Gnome43/Libjpeg_turbo/ICU72.1 (#7508)
* crew: cache builds

* Initial Gnome43/Libjpeg_turbo/ICU72 commits squashed

* fix lint error

* update packages.yaml

* Vulkan packages -> 1.3.231

* add packages to packages.yaml

* add more to packages.yaml

* update libxshmfence

* pixman -> 0.42.0

* libpciaccess -> 0.17.0

* update libxau

* update libxfont2

* update libxcb

* many updates

* updates

* baobab updates

* add libshumate

* update gnome_calculator

* update dfonf_editor

* update evince

* add libpanel

* update libpeas

* update libgweather

* update libgudev gnome_maps

* update upower and libxfixes

* style update

* update gnome_session

* update gnome_settings_daemon

* temporary partial webkit2gtk upload

* update packages.yaml

* fix ruby file perms

* update folks

* move webkit2gtk_4 back to 2.38.0

* update icu4c, change webkit2gtk build

* add updated webkit2gtk_5 file

* update js102

* add x86 builds for webkit2gtk_4

* add mozjs exclusion to icu4c postinstall

* add builds for evolution_data_server

* update gemacs

* update webkit2gtk packages

* update emacs

* add folks fix

* loosen icu4c postinstall check

* rebuild libportal with gtk3

* update epiphany

* openssh -> 9.1

* add x86 webkit2gtk_4 binaries

* add postinstall to webkit2gtk_4

* update svt_av1

* update libavif

* linting fix

* curl -> 7.86.0

* git -> 2.38.1

* add postinstall to gnome_console

* add gcc10 for armv7l

* add gcc10 binaries

* lint gcc10

* rebase fix

* Add WIP webkit2gtk builds

* add back postintall to gnome_maps

* gstreamer version change

* cleanup geocode_glib, and fix gnome_maps depend

* s/@_ver.to_s/@_ver/

* add mpv build and gtk4 -> 4.8.2

* bump curl version to 7.86.0

* remove other version binaries from webkit2gtk builds

* add i686 build

* adjust compatibility for gemacs... for now.

* Add code to sommelier to adjust for whether scripts are sourced or run.

* make -> 4.4

* bump version
2022-11-01 12:23:38 -05:00

71 lines
2.4 KiB
Ruby

require 'package'
class Mapserver < Package
description 'MapServer is an Open Source platform for publishing spatial data and interactive mapping applications to the web.'
homepage 'http://mapserver.org/'
version '8.0.0'
license 'Boost-1.0, BSD-2, ISC, MIT and tcltk'
compatibility 'all'
source_url 'http://download.osgeo.org/mapserver/mapserver-8.0.0.tar.gz'
source_sha256 'bb7ee625eb6fdce9bd9851f83664442845d70d041e449449e88ac855e97d773c'
binary_url({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/mapserver/8.0.0_armv7l/mapserver-8.0.0-chromeos-armv7l.tar.zst',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/mapserver/8.0.0_armv7l/mapserver-8.0.0-chromeos-armv7l.tar.zst',
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/mapserver/8.0.0_i686/mapserver-8.0.0-chromeos-i686.tar.zst',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/mapserver/8.0.0_x86_64/mapserver-8.0.0-chromeos-x86_64.tar.zst'
})
binary_sha256({
aarch64: '1369f2cc35af3f53ae7c3514b592b9b7dd3e6552b13f0951dbc1fb5d5d70d7c8',
armv7l: '1369f2cc35af3f53ae7c3514b592b9b7dd3e6552b13f0951dbc1fb5d5d70d7c8',
i686: '75a46fd6e07754aa98c83df934e1db568049254c44d40e7749755e7ed10b8bbf',
x86_64: '803eb10f06933eff71eea4138ad9bd81a3abb8c81d707e9df268abe12f8842f3'
})
depends_on 'cmake'
depends_on 'cairo'
depends_on 'libcurl'
depends_on 'fribidi'
depends_on 'gdal'
depends_on 'geos'
depends_on 'glib'
depends_on 'harfbuzz'
depends_on 'libjpeg'
depends_on 'proj4'
depends_on 'freetype' # R
depends_on 'gcc' # R
depends_on 'glibc' # R
depends_on 'libpng' # R
depends_on 'libxml2' # R
depends_on 'protobuf_c' # R
depends_on 'zlibpkg' # R
def self.build
Dir.mkdir 'builddir'
Dir.chdir 'builddir' do
system "cmake -G Ninja \
#{CREW_CMAKE_OPTIONS} \
-DFRIBIDI_INCLUDE_DIR=`pkg-config fribidi --cflags-only-I|sed -e 's/^-I//' -e 's/ -I/;/g'` \
-DWITH_CLIENT_WFS=1 \
-DWITH_CLIENT_WMS=1 \
-DWITH_CURL=1 \
-DWITH_FCGI=0 \
-DWITH_FRIBIDI=1 \
-DWITH_GDAL=1 \
-DWITH_GIF=0 \
-DWITH_HARFBUZZ=1 \
-DWITH_OGR=1 \
-DWITH_POSTGIS=0 \
-DWITH_PROJ=1 \
-DWITH_THREAD_SAFETY=1 \
-DWITH_WCS=1 \
.."
end
system 'ninja -C builddir'
end
def self.install
system "DESTDIR=#{CREW_DEST_DIR} ninja -C builddir install"
end
end