Skip to content
This repository has been archived by the owner on Jun 9, 2018. It is now read-only.

Commit

Permalink
add metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
fperrad committed Dec 1, 2009
1 parent 87617ea commit e46bda4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .gitignore
@@ -1,3 +1,4 @@
MANIFEST
Makefile

*.pbc
Expand All @@ -20,3 +21,7 @@ t/*.parse
t/*.past
t/*.zip
t/MarkdownTest_1.0

*.tar.gz
*.zip
*.patch
17 changes: 15 additions & 2 deletions setup.pir
@@ -1,4 +1,4 @@
#! /usr/local/bin/parrot
#!/usr/bin/env parrot
# Copyright (C) 2009, Parrot Foundation.

=head1 NAME
Expand All @@ -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
Expand Down

0 comments on commit e46bda4

Please sign in to comment.