--- /dev/null
+Source: maypole
+Maintainer: Ben Hutchings <ben@decadentplace.org.uk>
+Section: perl
+Priority: extra
+Build-Depends-Indep: debhelper (>= 4), perl (>= 5.6.0-16),
+ libclass-dbi-sqlite-perl
+ libcgi-simple-perl,
+ libcgi-untaint-perl,
+ libclass-accessor-perl,
+ libclass-data-inheritable-perl,
+ libclass-dbi-abstractsearch-perl,
+ libclass-dbi-asform-perl,
+ libclass-dbi-fromcgi-perl,
+ libclass-dbi-loader-perl,
+ libclass-dbi-loader-relationship-perl,
+ libclass-dbi-pager-perl,
+ libclass-dbi-perl,
+ libclass-dbi-plugin-retrieveall-perl,
+ libdigest-perl,
+ libtemplate-perl,
+ libtemplate-plugin-class-perl,
+ libuniversal-moniker-perl,
+ libuniversal-require-perl,
+ liburi-perl,
+ libwww-perl
+Standards-Version: 3.6.2
+
+Package: libmaypole-perl
+Architecture: all
+Depends: libapache-mod-perl | libapache2-mod-perl2, ${perl:Depends}
+Description: Perl framework for MVC-oriented web applications
+ Maypole is a Perl framework for MVC-oriented web applications, similar
+ to Jakarta's Struts. Maypole is designed to minimize coding requirements
+ for creating simple web interfaces to databases, while remaining flexible
+ enough to support enterprise web applications.
+ .
+ Homepage: http://maypole.perl.org/
--- /dev/null
+This is the Debian-packaged version of Maypole, put together by Ben
+Hutchings <ben@decadentplace.org.uk> using source from:
+
+ http://maypole.perl.org/
+
+The authors of Maypole are Simon Cozens <simon@cpan.org> et al.
+(see /usr/share/doc/libmaypole-perl/AUTHORS).
+
+You may distribute this code under the same terms as Perl itself:
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of either:
+
+ a) the GNU General Public License as published by the Free Software
+ Foundation; either version 1, or (at your option) any later
+ version, or
+
+ b) the "Artistic License" which comes with Perl.
+
+On Debian GNU/Linux systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL' and
+the Artistic Licence in `/usr/share/common-licenses/Artistic'.
--- /dev/null
+#!/usr/bin/make -f
+
+build :
+ perl Makefile.PL INSTALLDIRS=vendor
+ $(MAKE)
+
+binary : binary-arch binary-indep
+
+binary-arch :
+
+binary-indep : build
+ dh_testroot
+ mkdir -p -m755 debian/libmaypole-perl/usr/share/perl5
+ $(MAKE) PREFIX=$(CURDIR)/debian/libmaypole-perl/usr install
+ dh_perl
+ mkdir -p -m755 debian/libmaypole-perl/usr/share/doc/libmaypole-perl
+ dh_installchangelogs
+ dh_installdocs
+ dh_compress
+ dh_fixperms
+ dh_gencontrol
+ dh_builddeb
+
+clean :
+ if [ -f Makefile ]; then $(MAKE) clean; fi
+ dh_clean Makefile
+
+.PHONY : build binary binary-arch binary-dep clean