mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
Fix indentation of some package.rb files
This commit is contained in:
@@ -1,20 +1,20 @@
|
|||||||
require 'package'
|
require 'package'
|
||||||
|
|
||||||
class Gnutls < Package
|
class Gnutls < Package
|
||||||
version '3.3.15'
|
version '3.3.15'
|
||||||
source_url 'ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/gnutls-3.3.15.tar.xz'
|
source_url 'ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/gnutls-3.3.15.tar.xz'
|
||||||
source_sha1 'd7f66b0aeaf48ff8621cc1913230635ef672f0a4'
|
source_sha1 'd7f66b0aeaf48ff8621cc1913230635ef672f0a4'
|
||||||
|
|
||||||
depends_on 'buildessential'
|
depends_on 'buildessential'
|
||||||
depends_on 'nettle'
|
depends_on 'nettle'
|
||||||
depends_on 'pkgconfig'
|
depends_on 'pkgconfig'
|
||||||
|
|
||||||
def self.build
|
def self.build
|
||||||
system "./configure"
|
system "./configure"
|
||||||
system "make"
|
system "make"
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.install
|
def self.install
|
||||||
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
|
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,19 +1,19 @@
|
|||||||
require 'package'
|
require 'package'
|
||||||
|
|
||||||
class Nettle < Package
|
class Nettle < Package
|
||||||
version '2.7.1'
|
version '2.7.1'
|
||||||
source_url 'https://ftp.gnu.org/gnu/nettle/nettle-2.7.1.tar.gz'
|
source_url 'https://ftp.gnu.org/gnu/nettle/nettle-2.7.1.tar.gz'
|
||||||
source_sha1 'e7477df5f66e650c4c4738ec8e01c2efdb5d1211'
|
source_sha1 'e7477df5f66e650c4c4738ec8e01c2efdb5d1211'
|
||||||
|
|
||||||
depends_on 'buildessential'
|
depends_on 'buildessential'
|
||||||
depends_on 'm4'
|
depends_on 'm4'
|
||||||
|
|
||||||
def self.build
|
def self.build
|
||||||
system "./configure --libdir=/usr/local/lib"
|
system "./configure --libdir=/usr/local/lib"
|
||||||
system "make"
|
system "make"
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.install
|
def self.install
|
||||||
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
|
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user