mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
10 lines
204 B
Plaintext
10 lines
204 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
if [ "$1" = "configure" ] && [ -x /usr/lib/qgis/crssync ]; then
|
||
|
cp /usr/share/qgis/resources/srs-template.db /usr/share/qgis/resources/srs.db
|
||
|
dpkg-trigger qgis-crssync
|
||
|
fi
|
||
|
|
||
|
#DEBHELPER#
|