Package Details: amass-bin 5.1.1-1

Git Clone URL: https://aur.archlinux.org/amass-bin.git (read-only, click to copy)
Package Base: amass-bin
Description: In-depth Attack Surface Mapping and Asset Discovery
Upstream URL: https://github.com/owasp-amass/amass
Keywords: security
Licenses: Apache-2.0
Conflicts: amass
Submitter: placidina
Maintainer: pngdeity
Last Packager: pngdeity
Votes: 2
Popularity: 0.000000
First Submitted: 2022-10-06 16:22 (UTC)
Last Updated: 2026-05-08 02:52 (UTC)

Latest Comments

flx-0x00 commented on 2025-08-04 11:06 (UTC)

Amass has updated to version 5 and the repo url has changed. Here is a working PKGBUILD file:

_pkgname=amass
pkgname=${_pkgname}-bin
pkgver=5.0.0
pkgrel=1
pkgdesc="In-depth Attack Surface Mapping and Asset Discovery"
arch=('x86_64')
url="https://github.com/OWASP/Amass"
license=('Apache')
conflicts=('amass')
options=(!debug)
source=(https://github.com/owasp-amass/amass/releases/download/v${pkgver}/${_pkgname}_linux_amd64.tar.gz)
sha512sums=('ae5412a89e5133cb4491ad5d0e439caacf5a093b23dd269c9e1521b6b825a6811f9c75f1dcfe75c405416de7fabcfe940e6187bbe2da27345ee4f9038033d32a')

package() {
  cd "${_pkgname}_linux_amd64"

  install -dm 755 "${pkgdir}/usr/share/${_pkgname}"
  install -Dm 755 ${_pkgname} "${pkgdir}/usr/bin/${_pkgname}"
}