summaryrefslogtreecommitdiff
path: root/archivers/mousetar/Makefile
diff options
context:
space:
mode:
authoragc <agc@pkgsrc.org>2002-10-28 12:41:55 +0000
committeragc <agc@pkgsrc.org>2002-10-28 12:41:55 +0000
commit5786131a18a32dc29245fed72e6337f94228cc6b (patch)
treeef62f876de36e059c0b4d33d4d08e420d5f2dd42 /archivers/mousetar/Makefile
parentdb940ca9dbe70c90d6562f782bf08cc4728bd837 (diff)
downloadpkgsrc-5786131a18a32dc29245fed72e6337f94228cc6b.tar.gz
Correct my mistake - move the mousetar package from sysutils to archivers.
Diffstat (limited to 'archivers/mousetar/Makefile')
-rw-r--r--archivers/mousetar/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/archivers/mousetar/Makefile b/archivers/mousetar/Makefile
new file mode 100644
index 00000000000..a1022a18fe4
--- /dev/null
+++ b/archivers/mousetar/Makefile
@@ -0,0 +1,27 @@
+# $NetBSD: Makefile,v 1.1.1.1 2002/10/28 12:41:55 agc Exp $
+#
+
+DISTNAME= mousetar-20020202
+CATEGORIES= sysutils
+MASTER_SITES= ftp://ftp.netbsd.org/pub/NetBSD/misc/mouse/tar/
+DISTFILES= tar.c tar.man
+
+MAINTAINER= packages@netbsd.org
+#HOMEPAGE= none
+COMMENT= der Mouse's version of tar program
+
+WRKSRC= ${WRKDIR}
+
+do-extract:
+ for f in ${DISTFILES}; do \
+ ${CP} ${DISTDIR}/$$f ${WRKDIR}; \
+ done
+
+do-build:
+ cd ${WRKSRC}; ${CC} ${CFLAGS} tar.c -o mousetar
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/mousetar ${PREFIX}/bin
+ ${INSTALL_MAN} ${WRKSRC}/tar.man ${PREFIX}/man/man1/mousetar.1
+
+.include "../../mk/bsd.pkg.mk"