# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DESCRIPTION="Open source assembly language compiler"
HOMEPAGE="https://flatassembler.net/"
SRC_URI="https://flatassembler.net/fasm-${PV}.tgz -> ${P}.tgz"

S="${WORKDIR}/${PN/-bin}"

LICENSE="BSD-2"
SLOT="0"
KEYWORDS="amd64 x86"

RESTRICT="mirror"

src_install() {
	if use amd64; then
		newbin fasm.x64 fasm
	elif use x86; then
		dobin fasm
	else
		die "Unsupported architecture"
	fi
}