Skip to content

Commit 493a8c5

Browse files
committed
Add cabal files
1 parent 90749d6 commit 493a8c5

File tree

3 files changed

+60
-0
lines changed

3 files changed

+60
-0
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2013 Mark Reid
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

Setup.hs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import Distribution.Simple
2+
main = defaultMain

papersite.cabal

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
-- Cabal package for papersite
2+
name: papersite
3+
version: 0.1.0.0
4+
synopsis: Site generation tool for JMLR proceedings.
5+
6+
-- A longer description of the package.
7+
description:
8+
A Hakyll-based static website generation tool that takes
9+
BibTeX descriptions of a conference or workshop proceedings
10+
and generates a collection of MathJax-enabled pages that
11+
can be uploaded to http://jmlr.org/proceedings/ .
12+
13+
-- URL for the project homepage or repository.
14+
homepage: https://github.com/mreid/papersite
15+
license: MIT
16+
license-file: LICENSE
17+
author: Mark Reid
18+
maintainer: [email protected]
19+
20+
category: Web
21+
build-type: Simple
22+
cabal-version: >=1.8
23+
24+
source-repository head
25+
type: git
26+
location: https://github.com/mreid/papersite
27+
28+
executable site
29+
-- .hs or .lhs file containing the Main module.
30+
main-is: site.hs
31+
32+
-- Modules included in this executable, other than Main.
33+
other-modules: Author, Paper
34+
35+
-- Other library packages from which modules are imported.
36+
build-depends: base ==4.5.*, binary ==0.5.*, hakyll ==4.2.*, network ==2.3.*, bibtex ==0.1.*, parsec ==3.1.*, latex ==0.1.*, containers ==0.4.*, regex-compat ==0.95.*, text ==0.11.*, pandoc ==1.11.*, mtl ==2.1.*, utility-ht ==0.0.*
37+

0 commit comments

Comments
 (0)