Change several packages to use lib64 on x86_64

Also disable making static libraries.
This commit is contained in:
Kazushi (Jam) Marukawa
2017-07-30 12:18:07 +09:00
parent 4648560453
commit 7661f3e4a9
10 changed files with 45 additions and 38 deletions

View File

@@ -3,7 +3,7 @@ require 'package'
class Trousers < Package
description 'The open-source TCG Software Stack.'
homepage 'http://trousers.sourceforge.net/'
version '0.3.14'
version '0.3.14-1'
source_url 'https://downloads.sourceforge.net/project/trousers/trousers/0.3.14/trousers-0.3.14.tar.gz'
source_sha256 'ce50713a261d14b735ec9ccd97609f0ad5ce69540af560e8c3ce9eb5f2d28f47'
@@ -12,7 +12,8 @@ class Trousers < Package
depends_on 'pkgconfig'
def self.build
system './configure --prefix=/usr/local --with-gui=none'
system "./configure", "--disable-static", "--with-gui=none",
"--prefix=#{CREW_PREFIX}", "--libdir=#{CREW_LIB_PREFIX}"
system "make"
end