Unhardcode paths (#2782)

* Unhardcode paths

(fixed since last time)

* Misc. fixes

* More little fixes.

* Quoting fixes

* Fix quoting

* Unhardcode paths

Libcap fix

* Last little fixes
This commit is contained in:
James Larrowe
2018-10-26 13:38:09 -05:00
committed by Ed Reel
parent ca933a3a37
commit dc96990fd1
89 changed files with 182 additions and 191 deletions

View File

@@ -26,12 +26,12 @@ class Gtypist < Package
def self.build
system "autoreconf"
system "./configure", "--prefix=/usr/local"
system "./configure", "--prefix=#{CREW_PREFIX}"
system "make"
end
def self.install
system "make", "prefix=#{CREW_DEST_DIR}/usr/local", "install"
system "rm", "-f", "#{CREW_DEST_DIR}/usr/local/share/info/dir"
system "make", "prefix=#{CREW_DEST_PREFIX}", "install"
system "rm", "-f", "#{CREW_DEST_PREFIX}/share/info/dir"
end
end