diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-03-26 18:29:35 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-03-26 18:29:35 +0000 |
commit | df0131d3a596ed333f9075c544b6b99504917683 (patch) | |
tree | 5b781c9e34e686a2febe9defe8e11232df9cbea0 /testing/masscan | |
parent | 4be0ed78e4add1ca75afafe593889b285ce73c33 (diff) | |
download | aports-df0131d3a596ed333f9075c544b6b99504917683.tar.bz2 aports-df0131d3a596ed333f9075c544b6b99504917683.tar.xz |
testing/masscan: respect CC and CFLAGS
use system compiler and system CFLAGS
Diffstat (limited to 'testing/masscan')
-rw-r--r-- | testing/masscan/APKBUILD | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/testing/masscan/APKBUILD b/testing/masscan/APKBUILD index 73615b2c6a..8a21caab7c 100644 --- a/testing/masscan/APKBUILD +++ b/testing/masscan/APKBUILD @@ -7,14 +7,13 @@ pkgdesc="Mass IP port scanner - This is the fastest Internet port scanner." url="https://github.com/robertdavidgraham/masscan" arch="all" license="AGPL-3.0" -depends="libpcap" -makedepends="clang-dev libpcap-dev linux-headers" +makedepends="libpcap-dev linux-headers" source="$pkgname-$pkgver.tar.gz::https://github.com/robertdavidgraham/$pkgname/archive/$pkgver.tar.gz" builddir="$srcdir/$pkgname-$pkgver" build() { cd "$builddir" - make + make CC="${CC:-gcc}" CFLAGS="${CFLAGS} -I." } check() { |