blob: c300fe4394bfe74d740aa0040ee089dc319f7f91 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# New ports collection Makefile for: cmake-modules
# Date created: 12 July 2012
# Whom: gahr
#
# $FreeBSD$
#
#
PORTREVISION= 0
PKGNAMESUFFIX= -modules
LATEST_LINK= cmake-modules
COMMENT= Modules and Templates for CMake
CMAKE_MODULES= yes
do-install:
${MKDIR} ${DATADIR}/Modules
${MKDIR} ${DATADIR}/Templates
cd ${WRKSRC}/Modules && ${COPYTREE_SHARE} \* ${DATADIR}/Modules
cd ${WRKSRC}/Templates && ${COPYTREE_SHARE} \* ${DATADIR}/Templates
NO_BUILD= yes
PLIST= ${.CURDIR}/pkg-plist
DESCR= ${.CURDIR}/pkg-descr
MASTERDIR= ${.CURDIR}/../cmake
.include "${MASTERDIR}/Makefile"
|