]> git.decadent.org.uk Git - maypole.git/blobdiff - Makefile.PL
This is very close to being able to spit out pages now.
[maypole.git] / Makefile.PL
index 6211f1609e7989fd1e4ad277c611fff99b236bf6..e656c566f72c10e3bb1d7f15ff8213b691f1f06a 100644 (file)
@@ -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 <simon@nonet>') : ()),
 );
+
+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 ( '', (<DATA>) );
+
+    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);
+