mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-20 08:27:15 +00:00
28 lines
543 B
Makefile
28 lines
543 B
Makefile
# Created by: Emanuel Haupt <ehaupt@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= amigafonts
|
|
PORTVERSION= 1.02
|
|
CATEGORIES= x11-fonts
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Faithfully remade Amiga fonts
|
|
|
|
LICENSE= GPLv3RLE+
|
|
|
|
USES= fonts
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= rewtnull
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
post-patch:
|
|
@cd ${WRKSRC}/ttf && for i in `ls *.ttf`; do ${MV} $$i `echo $$i | \
|
|
${SED} -e 's/_v1.0//;s/_/-/'`; done
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${FONTSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/ttf/*.ttf ${STAGEDIR}${FONTSDIR}
|
|
|
|
.include <bsd.port.mk>
|