summaryrefslogtreecommitdiff
path: root/regress/print-plist/Makefile
diff options
context:
space:
mode:
authorjmmv <jmmv>2004-09-08 15:04:23 +0000
committerjmmv <jmmv>2004-09-08 15:04:23 +0000
commit7850d54536ca844e1334bebb826a966a22fe0b17 (patch)
tree5f4baee61e996a133ec93b22570294cde64307a1 /regress/print-plist/Makefile
parent5f4f47cb0a8d3a4ccabfad9781922fce386882de (diff)
downloadpkgsrc-7850d54536ca844e1334bebb826a966a22fe0b17.tar.gz
Initial import of the print-plist regression test:
This test verifies that print-PLIST works, as well as related functionality such as PRINT_PLIST_AWK. Reviewed by gavan@.
Diffstat (limited to 'regress/print-plist/Makefile')
-rw-r--r--regress/print-plist/Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/regress/print-plist/Makefile b/regress/print-plist/Makefile
new file mode 100644
index 00000000000..cc0be85475d
--- /dev/null
+++ b/regress/print-plist/Makefile
@@ -0,0 +1,30 @@
+# $NetBSD: Makefile,v 1.1.1.1 2004/09/08 15:04:23 jmmv Exp $
+#
+
+DISTNAME= print-plist-0.0
+CATEGORIES= regress
+MASTER_SITES= # empty
+DISTFILES= # empty
+
+MAINTAINER= jmmv@NetBSD.org
+COMMENT= Test print-PLIST and related functionality
+
+EXTRACT_ONLY= # empty
+NO_CONFIGURE= yes
+NO_MTREE= yes
+
+PRINT_PLIST_AWK+= /^print-plist\/foo$$/ \
+ { print "@comment Matched test file."; \
+ print; next }
+PRINT_PLIST_AWK+= /^@dirrm print-plist$$/ \
+ { print "@comment Matched test directory."; \
+ print; next }
+
+do-build:
+ ${ECHO} "foo" >${WRKDIR}/foo
+
+do-install:
+ ${INSTALL_DATA_DIR} ${PREFIX}/print-plist
+ ${INSTALL_DATA} ${WRKDIR}/foo ${PREFIX}/print-plist
+
+.include "../../mk/bsd.pkg.mk"