├── .docker ├── assemble │ └── Dockerfile ├── config.conf ├── qgis-linux │ └── Dockerfile └── qt-ndk │ ├── Dockerfile │ └── install-qt.sh ├── .github ├── FUNDING.yml └── workflows │ ├── docker.yml │ └── qgis-linux.yml ├── .gitignore ├── Dockerfile ├── LICENSE-for-distribute-sh ├── README.md ├── config.conf.default ├── distribute.sh ├── layouts ├── qgis-debug │ ├── AndroidManifest.xml │ ├── res │ │ ├── drawable │ │ │ ├── icon.png │ │ │ └── logo.png │ │ ├── layout │ │ │ └── splash.xml │ │ └── values │ │ │ ├── libs.xml │ │ │ └── strings.xml │ └── src │ │ └── org │ │ ├── kde │ │ └── necessitas │ │ │ └── ministro │ │ │ ├── IMinistro.aidl │ │ │ └── IMinistroCallback.aidl │ │ ├── qgis │ │ └── QgisActivity.java │ │ └── qtproject │ │ └── qt5 │ │ └── android │ │ └── bindings │ │ ├── QtActivity.java │ │ └── QtApplication.java └── qgismobile-debug │ ├── AndroidManifest.xml │ ├── res │ ├── drawable │ │ ├── icon.png │ │ └── logo.png │ ├── layout │ │ └── splash.xml │ └── values │ │ ├── libs.xml │ │ └── strings.xml │ └── src │ └── org │ ├── kde │ └── necessitas │ │ └── ministro │ │ ├── IMinistro.aidl │ │ └── IMinistroCallback.aidl │ ├── qgis │ └── QgisActivity.java │ └── qtproject │ └── qt5 │ └── android │ └── bindings │ ├── QtActivity.java │ └── QtApplication.java ├── qt_version.txt ├── recipes ├── exiv2 │ ├── patches │ │ └── exiv2.patch │ └── recipe.sh ├── expat │ ├── patches │ │ └── expat.patch │ └── recipe.sh ├── freetype │ └── recipe.sh ├── freexl │ ├── patches │ │ └── freexl.patch │ └── recipe.sh ├── gdal │ ├── patches │ │ ├── gdal.patch │ │ └── memdebug.patch │ └── recipe.sh ├── geos │ ├── patches │ │ └── geos.patch │ └── recipe.sh ├── gsl │ ├── patches │ │ └── gsl.patch │ └── recipe.sh ├── iconv │ ├── patches │ │ └── libiconv.patch │ └── recipe.sh ├── libpng │ └── recipe.sh ├── librttopo │ └── recipe.sh ├── libspatialindex │ └── recipe.sh ├── libspatialite │ ├── patches │ │ └── spatialite.patch │ └── recipe.sh ├── libtiff │ ├── patches │ │ └── libtiff.patch │ └── recipe.sh ├── libzip │ └── recipe.sh ├── libzstd │ └── recipe.sh ├── openjpeg │ └── recipe.sh ├── openssl │ ├── patches │ │ ├── armeabi.patch │ │ └── rand_unix.patch │ └── recipe.sh ├── poppler │ └── recipe.sh ├── postgresql │ ├── patches │ │ ├── langinfo.patch │ │ ├── libpq.patch │ │ ├── postgresql.patch │ │ └── stdlib.patch │ └── recipe.sh ├── proj │ ├── patches │ │ ├── notest.patch │ │ └── proj4.patch │ └── recipe.sh ├── protobuf │ └── recipe.sh ├── qca │ ├── patches │ │ ├── No-setuid-on-Android.patch │ │ ├── cxx11.patch │ │ ├── no_setuid.patch │ │ ├── qca_console.patch │ │ └── qca_qio.patch │ └── recipe.sh ├── qfield │ └── recipe.sh ├── qgis │ ├── patches │ │ ├── 0001-Use-qrc-for-crs-mapping.patch │ │ └── update_feature_fix.patch │ └── recipe.sh ├── qscintilla │ └── recipe.sh ├── qtkeychain │ ├── patches │ │ ├── cxx11.patch │ │ ├── java.patch │ │ ├── qca_console.patch │ │ └── qca_qio.patch │ └── recipe.sh ├── qwt │ ├── patches │ │ ├── qwt-install.patch │ │ └── qwt.patch │ └── recipe.sh ├── qwtpolar │ ├── patches │ │ └── qwtpolar-features.patch │ └── recipe.sh ├── recipe.sh.tmpl ├── sqlite3 │ ├── CMakeLists.txt │ ├── recipe.sh │ └── sqlite3_config.h.in └── webp │ └── recipe.sh ├── scripts ├── build-docker.sh ├── build_arches.sh ├── update_qgis.sh └── upload_release_asset.py ├── src ├── apk │ ├── build.xml │ └── project.properties └── default.properties └── tools ├── android.toolchain.cmake.r19b ├── biglink ├── biglink-jb ├── depscan └── depsort.py /.docker/assemble/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/.docker/assemble/Dockerfile -------------------------------------------------------------------------------- /.docker/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/.docker/config.conf -------------------------------------------------------------------------------- /.docker/qgis-linux/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/.docker/qgis-linux/Dockerfile -------------------------------------------------------------------------------- /.docker/qt-ndk/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/.docker/qt-ndk/Dockerfile -------------------------------------------------------------------------------- /.docker/qt-ndk/install-qt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/.docker/qt-ndk/install-qt.sh -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/qgis-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/.github/workflows/qgis-linux.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE-for-distribute-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/LICENSE-for-distribute-sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/README.md -------------------------------------------------------------------------------- /config.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/config.conf.default -------------------------------------------------------------------------------- /distribute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/distribute.sh -------------------------------------------------------------------------------- /layouts/qgis-debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgis-debug/AndroidManifest.xml -------------------------------------------------------------------------------- /layouts/qgis-debug/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgis-debug/res/drawable/icon.png -------------------------------------------------------------------------------- /layouts/qgis-debug/res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgis-debug/res/drawable/logo.png -------------------------------------------------------------------------------- /layouts/qgis-debug/res/layout/splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgis-debug/res/layout/splash.xml -------------------------------------------------------------------------------- /layouts/qgis-debug/res/values/libs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgis-debug/res/values/libs.xml -------------------------------------------------------------------------------- /layouts/qgis-debug/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgis-debug/res/values/strings.xml -------------------------------------------------------------------------------- /layouts/qgis-debug/src/org/kde/necessitas/ministro/IMinistro.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgis-debug/src/org/kde/necessitas/ministro/IMinistro.aidl -------------------------------------------------------------------------------- /layouts/qgis-debug/src/org/kde/necessitas/ministro/IMinistroCallback.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgis-debug/src/org/kde/necessitas/ministro/IMinistroCallback.aidl -------------------------------------------------------------------------------- /layouts/qgis-debug/src/org/qgis/QgisActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgis-debug/src/org/qgis/QgisActivity.java -------------------------------------------------------------------------------- /layouts/qgis-debug/src/org/qtproject/qt5/android/bindings/QtActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgis-debug/src/org/qtproject/qt5/android/bindings/QtActivity.java -------------------------------------------------------------------------------- /layouts/qgis-debug/src/org/qtproject/qt5/android/bindings/QtApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgis-debug/src/org/qtproject/qt5/android/bindings/QtApplication.java -------------------------------------------------------------------------------- /layouts/qgismobile-debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgismobile-debug/AndroidManifest.xml -------------------------------------------------------------------------------- /layouts/qgismobile-debug/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgismobile-debug/res/drawable/icon.png -------------------------------------------------------------------------------- /layouts/qgismobile-debug/res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgismobile-debug/res/drawable/logo.png -------------------------------------------------------------------------------- /layouts/qgismobile-debug/res/layout/splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgismobile-debug/res/layout/splash.xml -------------------------------------------------------------------------------- /layouts/qgismobile-debug/res/values/libs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgismobile-debug/res/values/libs.xml -------------------------------------------------------------------------------- /layouts/qgismobile-debug/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgismobile-debug/res/values/strings.xml -------------------------------------------------------------------------------- /layouts/qgismobile-debug/src/org/kde/necessitas/ministro/IMinistro.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgismobile-debug/src/org/kde/necessitas/ministro/IMinistro.aidl -------------------------------------------------------------------------------- /layouts/qgismobile-debug/src/org/kde/necessitas/ministro/IMinistroCallback.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgismobile-debug/src/org/kde/necessitas/ministro/IMinistroCallback.aidl -------------------------------------------------------------------------------- /layouts/qgismobile-debug/src/org/qgis/QgisActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgismobile-debug/src/org/qgis/QgisActivity.java -------------------------------------------------------------------------------- /layouts/qgismobile-debug/src/org/qtproject/qt5/android/bindings/QtActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgismobile-debug/src/org/qtproject/qt5/android/bindings/QtActivity.java -------------------------------------------------------------------------------- /layouts/qgismobile-debug/src/org/qtproject/qt5/android/bindings/QtApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/layouts/qgismobile-debug/src/org/qtproject/qt5/android/bindings/QtApplication.java -------------------------------------------------------------------------------- /qt_version.txt: -------------------------------------------------------------------------------- 1 | 5.14.2 2 | -------------------------------------------------------------------------------- /recipes/exiv2/patches/exiv2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/exiv2/patches/exiv2.patch -------------------------------------------------------------------------------- /recipes/exiv2/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/exiv2/recipe.sh -------------------------------------------------------------------------------- /recipes/expat/patches/expat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/expat/patches/expat.patch -------------------------------------------------------------------------------- /recipes/expat/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/expat/recipe.sh -------------------------------------------------------------------------------- /recipes/freetype/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/freetype/recipe.sh -------------------------------------------------------------------------------- /recipes/freexl/patches/freexl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/freexl/patches/freexl.patch -------------------------------------------------------------------------------- /recipes/freexl/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/freexl/recipe.sh -------------------------------------------------------------------------------- /recipes/gdal/patches/gdal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/gdal/patches/gdal.patch -------------------------------------------------------------------------------- /recipes/gdal/patches/memdebug.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/gdal/patches/memdebug.patch -------------------------------------------------------------------------------- /recipes/gdal/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/gdal/recipe.sh -------------------------------------------------------------------------------- /recipes/geos/patches/geos.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/geos/patches/geos.patch -------------------------------------------------------------------------------- /recipes/geos/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/geos/recipe.sh -------------------------------------------------------------------------------- /recipes/gsl/patches/gsl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/gsl/patches/gsl.patch -------------------------------------------------------------------------------- /recipes/gsl/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/gsl/recipe.sh -------------------------------------------------------------------------------- /recipes/iconv/patches/libiconv.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/iconv/patches/libiconv.patch -------------------------------------------------------------------------------- /recipes/iconv/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/iconv/recipe.sh -------------------------------------------------------------------------------- /recipes/libpng/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/libpng/recipe.sh -------------------------------------------------------------------------------- /recipes/librttopo/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/librttopo/recipe.sh -------------------------------------------------------------------------------- /recipes/libspatialindex/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/libspatialindex/recipe.sh -------------------------------------------------------------------------------- /recipes/libspatialite/patches/spatialite.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/libspatialite/patches/spatialite.patch -------------------------------------------------------------------------------- /recipes/libspatialite/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/libspatialite/recipe.sh -------------------------------------------------------------------------------- /recipes/libtiff/patches/libtiff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/libtiff/patches/libtiff.patch -------------------------------------------------------------------------------- /recipes/libtiff/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/libtiff/recipe.sh -------------------------------------------------------------------------------- /recipes/libzip/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/libzip/recipe.sh -------------------------------------------------------------------------------- /recipes/libzstd/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/libzstd/recipe.sh -------------------------------------------------------------------------------- /recipes/openjpeg/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/openjpeg/recipe.sh -------------------------------------------------------------------------------- /recipes/openssl/patches/armeabi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/openssl/patches/armeabi.patch -------------------------------------------------------------------------------- /recipes/openssl/patches/rand_unix.patch: -------------------------------------------------------------------------------- 1 | 39a40,41 2 | > #undef SYS_getrandom 3 | > 4 | -------------------------------------------------------------------------------- /recipes/openssl/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/openssl/recipe.sh -------------------------------------------------------------------------------- /recipes/poppler/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/poppler/recipe.sh -------------------------------------------------------------------------------- /recipes/postgresql/patches/langinfo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/postgresql/patches/langinfo.patch -------------------------------------------------------------------------------- /recipes/postgresql/patches/libpq.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/postgresql/patches/libpq.patch -------------------------------------------------------------------------------- /recipes/postgresql/patches/postgresql.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/postgresql/patches/postgresql.patch -------------------------------------------------------------------------------- /recipes/postgresql/patches/stdlib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/postgresql/patches/stdlib.patch -------------------------------------------------------------------------------- /recipes/postgresql/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/postgresql/recipe.sh -------------------------------------------------------------------------------- /recipes/proj/patches/notest.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/proj/patches/notest.patch -------------------------------------------------------------------------------- /recipes/proj/patches/proj4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/proj/patches/proj4.patch -------------------------------------------------------------------------------- /recipes/proj/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/proj/recipe.sh -------------------------------------------------------------------------------- /recipes/protobuf/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/protobuf/recipe.sh -------------------------------------------------------------------------------- /recipes/qca/patches/No-setuid-on-Android.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qca/patches/No-setuid-on-Android.patch -------------------------------------------------------------------------------- /recipes/qca/patches/cxx11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qca/patches/cxx11.patch -------------------------------------------------------------------------------- /recipes/qca/patches/no_setuid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qca/patches/no_setuid.patch -------------------------------------------------------------------------------- /recipes/qca/patches/qca_console.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qca/patches/qca_console.patch -------------------------------------------------------------------------------- /recipes/qca/patches/qca_qio.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qca/patches/qca_qio.patch -------------------------------------------------------------------------------- /recipes/qca/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qca/recipe.sh -------------------------------------------------------------------------------- /recipes/qfield/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qfield/recipe.sh -------------------------------------------------------------------------------- /recipes/qgis/patches/0001-Use-qrc-for-crs-mapping.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qgis/patches/0001-Use-qrc-for-crs-mapping.patch -------------------------------------------------------------------------------- /recipes/qgis/patches/update_feature_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qgis/patches/update_feature_fix.patch -------------------------------------------------------------------------------- /recipes/qgis/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qgis/recipe.sh -------------------------------------------------------------------------------- /recipes/qscintilla/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qscintilla/recipe.sh -------------------------------------------------------------------------------- /recipes/qtkeychain/patches/cxx11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qtkeychain/patches/cxx11.patch -------------------------------------------------------------------------------- /recipes/qtkeychain/patches/java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qtkeychain/patches/java.patch -------------------------------------------------------------------------------- /recipes/qtkeychain/patches/qca_console.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qtkeychain/patches/qca_console.patch -------------------------------------------------------------------------------- /recipes/qtkeychain/patches/qca_qio.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qtkeychain/patches/qca_qio.patch -------------------------------------------------------------------------------- /recipes/qtkeychain/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qtkeychain/recipe.sh -------------------------------------------------------------------------------- /recipes/qwt/patches/qwt-install.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qwt/patches/qwt-install.patch -------------------------------------------------------------------------------- /recipes/qwt/patches/qwt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qwt/patches/qwt.patch -------------------------------------------------------------------------------- /recipes/qwt/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qwt/recipe.sh -------------------------------------------------------------------------------- /recipes/qwtpolar/patches/qwtpolar-features.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qwtpolar/patches/qwtpolar-features.patch -------------------------------------------------------------------------------- /recipes/qwtpolar/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/qwtpolar/recipe.sh -------------------------------------------------------------------------------- /recipes/recipe.sh.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/recipe.sh.tmpl -------------------------------------------------------------------------------- /recipes/sqlite3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/sqlite3/CMakeLists.txt -------------------------------------------------------------------------------- /recipes/sqlite3/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/sqlite3/recipe.sh -------------------------------------------------------------------------------- /recipes/sqlite3/sqlite3_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/sqlite3/sqlite3_config.h.in -------------------------------------------------------------------------------- /recipes/webp/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/recipes/webp/recipe.sh -------------------------------------------------------------------------------- /scripts/build-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/scripts/build-docker.sh -------------------------------------------------------------------------------- /scripts/build_arches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/scripts/build_arches.sh -------------------------------------------------------------------------------- /scripts/update_qgis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/scripts/update_qgis.sh -------------------------------------------------------------------------------- /scripts/upload_release_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/scripts/upload_release_asset.py -------------------------------------------------------------------------------- /src/apk/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/src/apk/build.xml -------------------------------------------------------------------------------- /src/apk/project.properties: -------------------------------------------------------------------------------- 1 | target=android-21 2 | -------------------------------------------------------------------------------- /src/default.properties: -------------------------------------------------------------------------------- 1 | target=android-14 2 | -------------------------------------------------------------------------------- /tools/android.toolchain.cmake.r19b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/tools/android.toolchain.cmake.r19b -------------------------------------------------------------------------------- /tools/biglink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/tools/biglink -------------------------------------------------------------------------------- /tools/biglink-jb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/tools/biglink-jb -------------------------------------------------------------------------------- /tools/depscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/tools/depscan -------------------------------------------------------------------------------- /tools/depsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/OSGeo4A/HEAD/tools/depsort.py --------------------------------------------------------------------------------