summaryrefslogtreecommitdiffstats
path: root/src/spatialite.mk
blob: c6765c838f17309af1f7fd4004893dd26c145445 (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
# This file is part of MXE. See LICENSE.md for licensing information.

PKG             := spatialite
$(PKG)_WEBSITE  := https://www.gaia-gis.it/fossil/libspatialite/index
$(PKG)_DESCR    := SpatiaLite
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 4.4.0-RC1
$(PKG)_CHECKSUM := 80f7fff0a147044c5eb197e565f598ac1f137d86d0a548cbc8f52fb7ff7cac68
$(PKG)_SUBDIR   := libspatialite-$($(PKG)_VERSION)
$(PKG)_FILE     := libspatialite-$($(PKG)_VERSION).tar.gz
$(PKG)_URL      := http://www.gaia-gis.it/gaia-sins/libspatialite-sources/$($(PKG)_FILE)
$(PKG)_DEPS     := dlfcn-win32 freexl geos sqlite zlib proj libiconv libxml2

define $(PKG)_UPDATE
    $(WGET) -q -O- 'http://www.gaia-gis.it/gaia-sins/libspatialite-sources/' | \
    $(SED) -n 's,.*libspatialite-\([0-9][^>]*\)\.tar.*,\1,p' | \
    tail -1
endef

define $(PKG)_BUILD
    # freeXL support is only necessary if you want to be able to parse .xls files.
    # If you disable freexl support, remove -lfreexl from the test program below.
    cd '$(1)' && autoreconf -fi -I ./m4
    cd '$(1)' && ./configure \
    $(MXE_CONFIGURE_OPTS) \
    --enable-freexl=yes \
    --with-geosconfig='$(PREFIX)/$(TARGET)/bin/geos-config'
    $(MAKE) -C '$(1)' -j '$(JOBS)' $(if $(BUILD_SHARED), LDFLAGS='-no-undefined')
    $(MAKE) -C '$(1)' -j 1  $(INSTALL_STRIP_LIB)

    # compile one of the demo programs (copied from the source package)
    '$(TARGET)-g++' $(if $(BUILD_SHARED), -Wno-undefined) \
       -W -Wall -Werror -ansi -pedantic \
       '$(TOP_DIR)/src/spatialite-test.c' -o '$(PREFIX)/$(TARGET)/bin/test-spatialite.exe' \
       `'$(TARGET)-pkg-config' $(PKG) --cflags --libs` \
       `'$(TARGET)-pkg-config' sqlite3 --cflags --libs` \
       $(if $(BUILD_STATIC), -lgeos_c -lgeos -lfreexl -lxml2 -liconv -llzma -lproj -lws2_32 -lz -lstdc++ -lm)

    # create a batch file to run the test program (as the program requires arguments)
    (printf 'REM run against a database that should not exist, but remove afterward to save space.\r\n'; \
     printf 'test-spatialite.exe test-db.sqlite\r\n'; \
     printf 'del test-db.sqlite\r\n';) \
     > '$(PREFIX)/$(TARGET)/bin/test-spatialite.bat'
endef