From e46bda45260ba20fb84aa91128112b941739942c Mon Sep 17 00:00:00 2001 From: Francois Perrad Date: Tue, 1 Dec 2009 15:54:29 +0100 Subject: [PATCH] add metadata --- .gitignore | 5 +++++ setup.pir | 17 +++++++++++++++-- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 741df75..246bd46 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +MANIFEST Makefile *.pbc @@ -20,3 +21,7 @@ t/*.parse t/*.past t/*.zip t/MarkdownTest_1.0 + +*.tar.gz +*.zip +*.patch diff --git a/setup.pir b/setup.pir index 8e9e48c..ba2fd1b 100755 --- a/setup.pir +++ b/setup.pir @@ -1,4 +1,4 @@ -#! /usr/local/bin/parrot +#!/usr/bin/env parrot # Copyright (C) 2009, Parrot Foundation. =head1 NAME @@ -25,8 +25,21 @@ No Configure step, no Makefile generated. .const 'Sub' spectest = 'spectest' register_step('spectest', spectest) - # build $P0 = new 'Hash' + $P0['name'] = 'Markdown' + $P0['abstract'] = 'Markdown on Parrot' + $P0['authority'] = 'http://github.com/fperrad' + $P0['description'] = 'This is the port of the Markdown, a lightweight markup language, on the Parrot VM.' + $P5 = split ',', 'markdown,wiki' + $P0['keywords'] = $P5 + $P0['license_type'] = 'Artistic License 2.0' + $P0['license_uri'] = 'http://www.perlfoundation.org/artistic_license_2_0' + $P0['copyright_holder'] = 'Parrot Foundation' + $P0['checkout_uri'] = 'git://github.com/fperrad/markdown.git' + $P0['browser_uri'] = 'http://github.com/fperrad/markdown' + $P0['project_uri'] = 'http://github.com/fperrad/markdown' + + # build $P1 = new 'Hash' $P1['markdown/grammar_gen.pir'] = 'markdown/grammar.pg' $P0['pir_pge'] = $P1