diff options
| author | Rob Hudson | 2009-10-02 15:22:45 -0700 |
|---|---|---|
| committer | Max Howell | 2009-10-03 15:24:31 +0100 |
| commit | da49258c18b4cf0cd2cf247e0dbcf23f7c2024b6 (patch) | |
| tree | f8b9e418facf96250bb6cc614242a9bc1ca0f1e9 /Library | |
| parent | fa93e72995f0f7c50e5319200920f3460b4b6dfa (diff) | |
| download | homebrew-da49258c18b4cf0cd2cf247e0dbcf23f7c2024b6.tar.bz2 | |
[postgis] Added extra needed files to share and bin.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/postgis.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Library/Formula/postgis.rb b/Library/Formula/postgis.rb index 8be84fe47..002944243 100644 --- a/Library/Formula/postgis.rb +++ b/Library/Formula/postgis.rb @@ -12,5 +12,11 @@ class Postgis <Formula def install system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" system "make install" + + # Copy some of the generated files to the share folder + (share+'postgis').install %w( spatial_ref_sys.sql postgis/postgis.sql postgis/postgis_upgrade.sql postgis/uninstall_postgis.sql ) + # Copy loader and utils binaries to bin folder + bin.install %w( loader/pgsql2shp loader/shp2pgsql utils/new_postgis_restore.pl utils/postgis_proc_upgrade.pl utils/postgis_restore.pl utils/profile_intersects.pl ) + end end |
