Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

configure: remove Autotools configure support #56

Merged
merged 1 commit into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions .github/workflows/build_ubuntu.sh

This file was deleted.

8 changes: 0 additions & 8 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
- pull_request

env:
GDAL_AUTOLOAD_DIR: $HOME/gdalplugins
GDAL_AUTOLOAD_CMAKE_DIR: $HOME/gdalplugins_cmake
jobs:
build:
Expand All @@ -22,20 +21,13 @@ jobs:
xargs -a <(awk '! /^ *(#|$)/' ".github/workflows/apt.txt") -r -- \
sudo apt-get install -y --no-install-recommends \
--no-install-suggests
- name: Create GDAL_AUTOLOAD directory
run: |
mkdir ${{ env.GDAL_AUTOLOAD_DIR }}
- name: Setup test data
run: |
mkdir -p $HOME/grassdata
cd $HOME/grassdata/
wget -c --quiet https://grass.osgeo.org/sampledata/north_carolina/nc_spm_08_micro.zip
unzip nc_spm_08_micro.zip
rm -f nc_spm_08_micro.zip
- name: Build
run: .github/workflows/build_ubuntu.sh ${{ env.GDAL_AUTOLOAD_DIR }}
- name: Test executing of GDAL with driver on GRASS maps
run: .github/workflows/test_simple.sh ${{ env.GDAL_AUTOLOAD_DIR }}
- name: Create GDAL_AUTOLOAD directory for CMake
run: |
mkdir ${{ env.GDAL_AUTOLOAD_CMAKE_DIR }}
Expand Down
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
*~
*.log
config.status*
autom*.cache
*.o
*.so
*.dylib
Makefile

# CMake files (CMakeSettings.json is generated by Visual Studio)
/build
Expand Down
44 changes: 0 additions & 44 deletions Makefile.in

This file was deleted.

13 changes: 0 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,6 @@ and finally build and install this driver in
To build this driver it is necessary for it to find GDAL and GRASS
support files.

**Building with Autotools:**

(to be deprecated after 1.0.3 release)

Typically, the configure and build process looks like:

```bash
./configure --with-gdal=/usr/bin/gdal-config \
--with-grass=/usr/grass
make
sudo make install
```

**Building with CMake:**

```bash
Expand Down
197 changes: 0 additions & 197 deletions aclocal.m4

This file was deleted.

Loading