mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
ffb21b5654
previous commit message to bsd.port.mk, which said INSTALL_SHLIBS. Boo.) Line up the rhs of variable assignments nicely. Remove a couple of extra whitespaces while I'm here. Suggested by: sobomax
30 lines
730 B
Makefile
30 lines
730 B
Makefile
# New ports collection makefile for: fastcrc
|
|
# Date created: 27 April 1999
|
|
# Whom: G. Adam Stanislav <adam@whizkidtech.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= fastcrc
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.whizkidtech.net/fports/
|
|
|
|
MAINTAINER= adam@whizkidtech.net
|
|
|
|
BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
INSTALLS_SHLIB= yes
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/libfcrc.so.1 ${PREFIX}/lib
|
|
${LN} -fs ${PREFIX}/lib/libfcrc.so.1 ${PREFIX}/lib/libfcrc.so
|
|
${INSTALL_DATA} ${WRKSRC}/fastcrc.h ${PREFIX}/include
|
|
${MKDIR} ${PREFIX}/share/doc/fastcrc
|
|
${INSTALL_MAN} ${WRKSRC}/index.html ${PREFIX}/share/doc/fastcrc
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fc ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|