X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=Makefile.PL;h=e656c566f72c10e3bb1d7f15ff8213b691f1f06a;hb=fa685ce517bd35c12ed6681803d9d0d6b1793159;hp=6211f1609e7989fd1e4ad277c611fff99b236bf6;hpb=feefb416b3c1aafdea07aa47378d007ee760e9f9;p=maypole.git diff --git a/Makefile.PL b/Makefile.PL index 6211f16..e656c56 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,8 +5,73 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'Apache::MVC', VERSION_FROM => 'lib/Apache/MVC.pm', # finds $VERSION - PREREQ_PM => {}, # e.g., Module::Name => 1.1 + PREREQ_PM => { + DBD::SQLite => 0, # For testing + Class::DBI::Loader => 0, + Apache::Request => 0, + Template => 0, + }, # e.g., Module::Name => 1.1 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'lib/Apache/MVC.pm', # retrieve abstract from module AUTHOR => 'Simon Cozens ') : ()), ); + +if (!-e "t/beerdb.db") { + print "Making SQLite DB\n"; + require DBD::SQLite; + require DBI; + my $dbh = DBI->connect("dbi:SQLite:dbname=t/beerdb.db"); + + my $sql = join ( '', () ); + + for my $statement (split /;/, $sql) { + $statement =~ s/\#.*$//mg; # strip # comments + $statement =~ s/auto_increment//g; + next unless $statement =~ /\S/; + eval { $dbh->do($statement) }; + die "$@: $statement" if $@; + } +} + +__DATA__ + +create table brewery ( + id int not null auto_increment primary key, + name varchar(30), + url varchar(50), + notes text +); + +create table beer ( + id int not null auto_increment primary key, + brewery integer, + style integer, + name varchar(30), + url varchar(120), +# tasted date, + score integer(2), + price varchar(12), + abv varchar(10), + notes text +); + +create table handpump ( + id int not null auto_increment primary key, + beer integer, + pub integer +); + +create table pub ( + id int not null auto_increment primary key, + name varchar(60), + url varchar(120), + notes text +); + +INSERT INTO beer (id, brewery, name, abv) VALUES + (1, 1, "Organic Best Bitter", "4.1"); +INSERT INTO brewery (id, name, url) VALUES + (1, "St Peter's Brewery", "http://www.stpetersbrewery.co.uk/"); +INSERT INTO pub (id, name) VALUES (1, "Turf Tavern"); +INSERT INTO handpump (id, pub, beer) VALUES (1, 1,1); +