--- /dev/null
+Source: mmv
+Maintainer: Michael Meskes <meskes@debian.org>
+Section: misc
+Priority: optional
+Standards-Version: 2.1.0.0
+
+Package: mmv
+Architecture: any
+Description: Move/Copy/Append/Link multiple files
+ mmv is a program to move/copy/append/link multiple files
+ according to a set of wildcard patterns. This multiple action is
+ performed safely, i.e. without any unexpected deletion of files due to
+ collisions of target names with existing filenames or with other
+ target names.
+Depends: ${shlibs:Depends}
--- /dev/null
+This is the Debian GNU/Linux prepackaged version of mmv.
+
+This package was put together by Michael Meskes <meskes@debian.org>,
+from sources obtained from USENET.
+
+Copyright (c) 1989 Vladimir Lanin
+
+Mmv is freeware. That means that the entire package of software and
+documentation is copyrighted, and may not be distributed with any
+modifications or for any charge (without the author's explicit written
+permission). Other than that, it may be used and distributed freely.
+
+Vladimir Lanin
+330 Wadsworth Ave, Apt 6F
+New York, NY 10040
+
+lanin@csd2.nyu.edu
+...!cmcl2!csd2!lanin
--- /dev/null
+#! /usr/bin/make -f
+
+CC = gcc
+LDFLAGS = -s
+
+# The package
+p = mmv
+# The version
+v = $(shell dpkg-parsechangelog | sed -n 's/^Version: //p')
+# The architecture
+a = $(shell dpkg --print-architecture)
+
+dir = `pwd`
+
+build:
+# Builds the binary package.
+ $(checkdir)
+ make CC="$(CC)" LDFLAGS="$(LDFLAGS)"
+ touch build
+
+clean:
+# Undoes the effect of `make -f debian/rules build'.
+ $(checkdir)
+ make clean
+ /bin/rm -rf debian/tmp build
+
+binary: binary-arch binary-indep
+
+binary-indep:
+ $(checkdir)
+
+binary-arch: build
+ $(checkdir)
+ test -f build || make -f debian/rules build
+# Makes a binary package.
+ /bin/rm -rf debian/tmp
+ test -f stamp-build || make -f debian/rules build
+ install -d -g root -m 755 -o root debian/tmp
+ chmod g-s debian/tmp
+ install -d -g root -m 755 -o root debian/tmp/DEBIAN
+ install -d -g root -m 755 -o root debian/tmp/usr/bin
+ install -d -g root -m 755 -o root debian/tmp/usr/man/man1
+ install -g root -o root -m 755 -s mmv debian/tmp/usr/bin
+ install -g root -o root -m 755 mmv.1 debian/tmp/usr/man/man1
+ gzip -9f debian/tmp/usr/man/man1/mmv.1
+ (cd debian/tmp/usr/bin;\
+ ln -s mmv mcp; \
+ ln -s mmv mad; \
+ ln -s mmv mln;)
+ install -d -g root -m 755 -o root debian/tmp/usr/doc/copyright
+ install -g root -m 644 -o root debian/copyright \
+ debian/tmp/usr/doc/copyright/$(p)
+ install -d -g root -m 755 -o root debian/tmp/usr/doc/$(p)
+ install -g root -m 644 -o root READ.ME \
+ debian/tmp/usr/doc/$(p)
+ install -g root -m 644 -o root debian/changelog \
+ debian/tmp/usr/doc/$(p)
+ gzip -f9 debian/tmp/usr/doc/$(p)/*
+ chmod -R g-sw debian/tmp/usr/doc/$(p)
+ chown -R root.root debian/tmp/usr/doc/$(p)
+ dpkg-shlibdeps debian/tmp/usr/bin/mmv
+ dpkg-gencontrol
+ dpkg --build debian/tmp && dpkg-name -o -s .. debian/tmp.deb
+
+define checkdir
+ test -f mmv.1
+endef