blob: a983b3bcafe1c1fe3a4a9267a377f04b143b958d (
plain)
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
|
# $NetBSD: Makefile,v 1.15 2006/03/04 21:29:29 jlam Exp $
DISTNAME= stl
PKGNAME= sgi-stl-3.3
CATEGORIES= devel
MASTER_SITES= http://www.sgi.com/tech/stl/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.sgi.com/tech/stl/
COMMENT= SGI Standard Template Library
WRKSRC= ${WRKDIR}
DIST_SUBDIR= ${PKGNAME_NOREV}
NO_CONFIGURE= yes
NO_BUILD= yes
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/include/sgi-stl
cd ${WRKSRC}; for file in `${GREP} "^include/sgi-stl/" ${PLIST_SRC} \
| ${SED} "s,^include/sgi-stl/,,g"`; do \
${INSTALL_DATA} $${file} ${PREFIX}/include/sgi-stl/$${file}; \
done
.include "../../mk/bsd.pkg.mk"
|