mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:24:52 +00:00
29 lines
678 B
Makefile
29 lines
678 B
Makefile
# New ports collection makefile for: spdict
|
|
# Date created: 2 Aug 2007
|
|
# Whom: vanilla@
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= spdict
|
|
PORTVERSION= 0.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}.src
|
|
|
|
MAINTAINER= vanilla@FreeBSD.org
|
|
COMMENT= A library of dictionary algorithms
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
USE_LDCONFIG= yes
|
|
USE_GMAKE= yes
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/include/spdict
|
|
@${INSTALL} ${WRKSRC}/*.hpp ${PREFIX}/include/spdict
|
|
@${INSTALL} ${WRKSRC}/libspdict.so ${PREFIX}/lib/libspdict.so.1
|
|
@${LN} -s ${PREFIX}/lib/libspdict.so.1 ${PREFIX}/lib/libspdict.so
|
|
|
|
.include <bsd.port.mk>
|