mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
I believe that this will allow GnuTLS to build after being broken in #505. Updated GnuTLS package to 3.5.8.
21 lines
424 B
Ruby
21 lines
424 B
Ruby
require 'package'
|
|
|
|
class Gnutls < Package
|
|
version '3.5.8'
|
|
source_url 'ftp://ftp.gnutls.org/gcrypt/gnutls/v3.5/gnutls-3.5.8.tar.xz'
|
|
source_sha1 '238d5e62f9bb078101131dd2f4c7f2c1ac13e813'
|
|
|
|
depends_on 'buildessential'
|
|
depends_on 'nettle'
|
|
depends_on 'pkgconfig'
|
|
|
|
def self.build
|
|
system "./configure"
|
|
system "make"
|
|
end
|
|
|
|
def self.install
|
|
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
|
|
end
|
|
end
|