mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
40 lines
1.2 KiB
Ruby
40 lines
1.2 KiB
Ruby
require 'package'
|
|
|
|
class Ncdc < Package
|
|
description 'Ncdc is a modern and lightweight direct connect client with a friendly ncurses interface.'
|
|
homepage 'https://dev.yorhel.nl/ncdc'
|
|
version '1.20'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://dev.yorhel.nl/download/ncdc-1.20.tar.gz'
|
|
source_sha256 '8a998857df6289b6bd44287fc06f705b662098189f2a8fe95b1a5fbc703b9631'
|
|
binary_compression 'tar.xz'
|
|
|
|
binary_sha256({
|
|
aarch64: '29c39214a120bd002a78b118a53daa085530e837a6b67f1cf10bbaa7d1991524',
|
|
armv7l: '29c39214a120bd002a78b118a53daa085530e837a6b67f1cf10bbaa7d1991524',
|
|
i686: 'f28d8e26a29f6c2d555f591e5b3552aa1231fc843f52b827950ab67293443f2f',
|
|
x86_64: '7d72e59960fa27fef99a6f45c0fc9fc86b62931851c811d192e60d1376829452'
|
|
})
|
|
|
|
depends_on 'ncurses'
|
|
depends_on 'zlib'
|
|
depends_on 'bzip2'
|
|
depends_on 'sqlite'
|
|
depends_on 'glib'
|
|
depends_on 'gnutls'
|
|
depends_on 'geoip'
|
|
|
|
def self.build
|
|
system './configure',
|
|
"--prefix=#{CREW_PREFIX}",
|
|
"CPPFLAGS=-I#{CREW_PREFIX}/include/ncursesw",
|
|
'--with-geoip'
|
|
system 'make'
|
|
end
|
|
|
|
def self.install
|
|
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
end
|
|
end
|