summaryrefslogtreecommitdiffstats
path: root/src/gdal.mk
blob: f4709002c8919e5309199fdac1107c2b9fafd508 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# This file is part of MXE. See LICENSE.md for licensing information.

PKG             := gdal
$(PKG)_WEBSITE  := http://www.gdal.org/
$(PKG)_DESCR    := GDAL
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 2.1.3
$(PKG)_CHECKSUM := ae6a0a0dc6eb45a981a46db27e3dfe16c644fcf04732557e2cb315776974074a
$(PKG)_SUBDIR   := gdal-$($(PKG)_VERSION)
$(PKG)_FILE     := gdal-$($(PKG)_VERSION).tar.gz
$(PKG)_URL      := http://download.osgeo.org/gdal/$($(PKG)_VERSION)/$($(PKG)_FILE)
$(PKG)_URL_2    := ftp://ftp.remotesensing.org/gdal/$($(PKG)_VERSION)/$($(PKG)_FILE)
$(PKG)_DEPS     := gcc armadillo curl expat geos giflib gta hdf4 hdf5 \
                   jpeg json-c libgeotiff libmysqlclient libpng libxml2 \
                   netcdf openjpeg postgresql proj sqlite tiff zlib

define $(PKG)_UPDATE
    $(WGET) -q -O- 'https://trac.osgeo.org/gdal/wiki/DownloadSource' | \
    $(SED) -n 's,.*gdal-\([0-9][^>]*\)\.tar.*,\1,p' | \
    head -1
endef

define $(PKG)_BUILD
    cd '$(1)' && autoreconf -fi -I ./m4
    # The option '--with-threads=no' means native win32 threading without pthread.
    # mysql uses threading from Vista onwards - '-D_WIN32_WINNT=0x0600'
    cd '$(1)' && ./configure \
        $(MXE_CONFIGURE_OPTS) \
        --with-armadillo='$(PREFIX)/$(TARGET)' \
        --with-bsb \
        --with-cfitsio=no \
        --with-dods-root=no \
        --with-dwgdirect=no \
        --with-ecw=no \
        --with-epsilon=no \
        --with-expat='$(PREFIX)/$(TARGET)' \
        --with-fme=no \
        --with-geos='$(PREFIX)/$(TARGET)/bin/geos-config' \
        --with-geotiff='$(PREFIX)/$(TARGET)' \
        --with-gif='$(PREFIX)/$(TARGET)' \
        --with-grass=no \
        --with-grib \
        --with-gta='$(PREFIX)/$(TARGET)' \
        --with-hdf4='$(PREFIX)/$(TARGET)' \
        --with-hdf5='$(PREFIX)/$(TARGET)' \
        --with-idb=no \
        --with-ingres=no \
        --with-jasper=no \
        --with-jp2mrsid=no \
        --with-jpeg='$(PREFIX)/$(TARGET)' \
        --with-kakadu=no \
        --with-libgrass=no \
        --with-libjson-c='$(PREFIX)/$(TARGET)' \
        --with-libtiff='$(PREFIX)/$(TARGET)' \
        --with-libz='$(PREFIX)/$(TARGET)' \
        --with-mrsid=no \
        --with-msg=no \
        --with-mysql='$(PREFIX)/$(TARGET)/bin/mysql_config' \
        --with-netcdf='$(PREFIX)/$(TARGET)' \
        --with-oci=no \
        --with-odbc=no \
        --with-ogdi=no \
        --with-ogr \
        --with-openjpeg='$(PREFIX)/$(TARGET)' \
        --with-pam \
        --with-pcidsk=no \
        --with-pcraster=no \
        --with-perl=no \
        --with-php=no \
        --with-png='$(PREFIX)/$(TARGET)' \
        --with-python=no \
        --with-ruby=no \
        --with-sde=no \
        --with-spatialite=no \
        --with-sqlite3='$(PREFIX)/$(TARGET)' \
        --with-threads=no \
        --with-xerces=no \
        --with-xml2='$(PREFIX)/$(TARGET)/bin/xml2-config' \
        CXXFLAGS='-D_WIN32_WINNT=0x0600' \
        LIBS="-ljpeg -lsecur32 -lportablexdr `'$(TARGET)-pkg-config' --libs openssl libtiff-4`"

    $(MAKE) -C '$(1)'       -j '$(JOBS)' lib-target
    # gdal doesn't have an install-strip target
    # --strip-debug doesn't reduce size by much, --strip-all breaks libs
    $(if $(STRIP_LIB),-'$(TARGET)-strip' --strip-debug '$(1)/.libs'/*)
    $(MAKE) -C '$(1)'       -j '$(JOBS)' gdal.pc
    $(MAKE) -C '$(1)'       -j '$(JOBS)' install-actions
    $(MAKE) -C '$(1)/port'  -j '$(JOBS)' install
    $(MAKE) -C '$(1)/gcore' -j '$(JOBS)' install
    $(MAKE) -C '$(1)/frmts' -j '$(JOBS)' install
    $(MAKE) -C '$(1)/alg'   -j '$(JOBS)' install
    $(MAKE) -C '$(1)/ogr'   -j '$(JOBS)' install OGR_ENABLED=
    $(MAKE) -C '$(1)/apps'  -j '$(JOBS)' all
    $(if $(STRIP_EXE),-'$(TARGET)-strip' '$(1)/apps'/*.exe)
    $(MAKE) -C '$(1)/apps'  -j '$(JOBS)' install
    ln -sf '$(PREFIX)/$(TARGET)/bin/gdal-config' '$(PREFIX)/bin/$(TARGET)-gdal-config'
endef