diff options
-rw-r--r-- | lang/fasm/Makefile | 6 | ||||
-rw-r--r-- | lang/fasm/pkg-descr | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/lang/fasm/Makefile b/lang/fasm/Makefile index dd3d18406704..240e93fdac25 100644 --- a/lang/fasm/Makefile +++ b/lang/fasm/Makefile @@ -4,7 +4,7 @@ PORTNAME= fasm PORTVERSION= 1.73.09 CATEGORIES= lang devel -MASTER_SITES= http://flatassembler.net/ +MASTER_SITES= https://flatassembler.net/ MAINTAINER= ports@FreeBSD.org COMMENT= Flat, multiple-pass assembler for IA-32 & x86-64 architectures @@ -24,7 +24,7 @@ OPTIONS_DEFINE= DOCS .include <bsd.port.pre.mk> .if ${ARCH} != "i386" -CFLAGS+= -m32 -L/usr/lib32 -B/usr/lib32 +CFLAGS+= -m32 -L/usr/lib32 -B/usr/lib32 .endif do-build: @@ -32,6 +32,8 @@ do-build: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/fasm ${STAGEDIR}${PREFIX}/bin + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/*.txt ${STAGEDIR}${DOCSDIR} diff --git a/lang/fasm/pkg-descr b/lang/fasm/pkg-descr index 02db39548b9a..a3c079dfc27c 100644 --- a/lang/fasm/pkg-descr +++ b/lang/fasm/pkg-descr @@ -7,4 +7,4 @@ the powerful but easy to use macroinstruction support and does multiple passes to optimize the instruction codes for size. The flat assembler is self-compilable and the full source code is included. -WWW: http://flatassembler.net/ +WWW: https://flatassembler.net/ |