mirror of https://github.com/google/oss-fuzz.git
[PROJ4] Fix build / move build script to PROJ repository itself (#3294)
This commit is contained in:
parent
57601d4b6c
commit
d56ec878e0
|
@ -16,7 +16,14 @@
|
|||
|
||||
FROM gcr.io/oss-fuzz-base/base-builder
|
||||
MAINTAINER even.rouault@spatialys.com
|
||||
RUN apt-get update && apt-get install -y make autoconf automake libtool g++ sqlite3 libsqlite3-dev pkg-config
|
||||
RUN git clone --depth 1 https://github.com/OSGeo/proj.4 proj.4
|
||||
WORKDIR proj.4
|
||||
COPY build.sh $SRC/
|
||||
RUN dpkg --add-architecture i386 && \
|
||||
apt-get update && \
|
||||
apt-get install -y make autoconf automake libtool g++ sqlite3 pkg-config
|
||||
|
||||
RUN git clone --depth 1 https://github.com/OSGeo/proj proj
|
||||
|
||||
RUN git clone --depth 1 https://github.com/curl/curl.git proj/curl
|
||||
|
||||
WORKDIR proj
|
||||
|
||||
RUN cp test/fuzzers/build.sh $SRC/
|
||||
|
|
|
@ -1,24 +0,0 @@
|
|||
#!/bin/bash -eu
|
||||
# Copyright 2016 Google Inc.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
################################################################################
|
||||
|
||||
./autogen.sh
|
||||
./configure --disable-shared
|
||||
make clean -s
|
||||
make -j$(nproc) -s
|
||||
|
||||
./test/fuzzers/build_google_oss_fuzzers.sh
|
||||
./test/fuzzers/build_seed_corpus.sh
|
|
@ -1,6 +1,9 @@
|
|||
homepage: "http://proj4.org/"
|
||||
homepage: "https://proj.org/"
|
||||
primary_contact: "even.rouault@gmail.com"
|
||||
auto_ccs:
|
||||
- "hobu.inc@gmail.com"
|
||||
- "kristianevers@gmail.com"
|
||||
- "knudsen.thomas@gmail.com"
|
||||
architectures:
|
||||
- x86_64
|
||||
- i386
|
||||
|
|
Loading…
Reference in New Issue