Style updates

This commit is contained in:
Luke 2017-10-09 20:30:59 +02:00 committed by Tony Theodore
parent 2aae4632d5
commit 78f9235232
3 changed files with 4 additions and 5 deletions

View File

@ -18,10 +18,10 @@ define $(PKG)_UPDATE
endef
define $(PKG)_BUILD
cd '$(SOURCE_DIR)' && ./configure \
cd '$(BUILD_DIR)' && '$(SOURCE_DIR)/configure' \
$(MXE_CONFIGURE_OPTS)
$(MAKE) -C '$(SOURCE_DIR)' -j '$(JOBS)' $(MXE_DISABLE_PROGRAMS)
$(MAKE) -C '$(SOURCE_DIR)' -j 1 $(INSTALL_STRIP_LIB)
$(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)' $(MXE_DISABLE_PROGRAMS)
$(MAKE) -C '$(BUILD_DIR)' -j 1 $(INSTALL_STRIP_LIB)
# the test program comes from the freexl sources itself (test_xl.c)
'$(TARGET)-gcc' \

View File

@ -30,4 +30,3 @@ define $(PKG)_BUILD
'$(TEST_FILE)' -o '$(PREFIX)/$(TARGET)/bin/test-gta.exe' \
`'$(TARGET)-pkg-config' gta --cflags --libs`
endef

View File

@ -9,7 +9,7 @@ $(PKG)_CHECKSUM := 80f7fff0a147044c5eb197e565f598ac1f137d86d0a548cbc8f52fb7ff7ca
$(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
$(PKG)_DEPS := gcc dlfcn-win32 freexl geos sqlite zlib proj libiconv libxml2
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://www.gaia-gis.it/gaia-sins/libspatialite-sources/' | \