Files
chromebrew/packages/ettercap.rb
Maximilian Downey Twiss f8f2128c2d Rename zlibpkg to zlib (#9859)
2024-07-26 00:23:05 -05:00

56 lines
1.7 KiB
Ruby

# Adapted from Arch Linux ettercap PKGBUILD at:
# https://github.com/archlinux/svntogit-community/raw/packages/ettercap/trunk/PKGBUILD
require 'package'
class Ettercap < Package
description 'Network sniffer/interceptor/logger for ethernet LANs'
homepage 'https://ettercap.github.com/ettercap/'
version '0.8.3.1'
license 'GPL'
compatibility 'all'
source_url 'https://github.com/Ettercap/ettercap/archive/v0.8.3.1/ettercap-0.8.3.1.tar.gz'
source_sha256 'd0c3ef88dfc284b61d3d5b64d946c1160fd04276b448519c1ae4438a9cdffaf3'
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'e777dff6d81b611460dfaded82b8091b38e091c2feb5056536121535f86f045f',
armv7l: 'e777dff6d81b611460dfaded82b8091b38e091c2feb5056536121535f86f045f',
i686: 'd7c1019cc15151b200797f88d915f0877881c32408ae89efb7f4c304f137438c',
x86_64: 'e24fe09a30a95396459a131d4e8e90965551572110318f8b4708789ebebba209'
})
depends_on 'curl' => :build
depends_on 'ethtool' => :build
depends_on 'geoip' # R
depends_on 'ghostscript' => :build
depends_on 'glibc' # R
depends_on 'libbsd' # R
depends_on 'curl' # R
depends_on 'libnet' # R
depends_on 'libpcap' # R
depends_on 'libtool' => :build
depends_on 'ncurses' # R
depends_on 'openssl' # R
depends_on 'pcre' # R
depends_on 'zlib' # R
def self.build
system "cmake -B builddir #{CREW_CMAKE_OPTIONS} \
-G Ninja \
-DINSTALL_SYSCONFDIR=#{CREW_PREFIX}/etc \
-DENABLE_GTK=OFF \
-DENABLE_TESTS=ON \
-DENABLE_IPV6=ON"
system 'samu -C builddir'
end
def self.check
system 'samu -C builddir test'
end
def self.install
system "DESTDIR=#{CREW_DEST_DIR} samu -C builddir install"
end
end