Skip to content

Commit

Permalink
Cabal files
Browse files Browse the repository at this point in the history
  • Loading branch information
FPtje committed Nov 28, 2014
1 parent 0fce496 commit 3089f67
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 9 deletions.
16 changes: 7 additions & 9 deletions LICENSE
Expand Up @@ -6,9 +6,9 @@
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.

(This is the first released version of the Lesser GPL. It also counts
[This is the first released version of the Lesser GPL. It also counts
as the successor of the GNU Library Public License, version 2, hence
the version number 2.1.)
the version number 2.1.]

Preamble

Expand Down Expand Up @@ -470,8 +470,8 @@ safest to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.

{description}
Copyright (C) {year} {fullname}
<one line to give the library's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
Expand All @@ -485,8 +485,7 @@ convey the exclusion of warranty; and each file should have at least the

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
USA
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

Also add information on how to contact you by electronic and paper mail.

Expand All @@ -495,10 +494,9 @@ school, if any, to sign a "copyright disclaimer" for the library, if
necessary. Here is a sample; alter the names:

Yoyodyne, Inc., hereby disclaims all copyright interest in the
library `Frob' (a library for tweaking knobs) written by James Random
Hacker.
library `Frob' (a library for tweaking knobs) written by James Random Hacker.

{signature of Ty Coon}, 1 April 1990
<signature of Ty Coon>, 1 April 1990
Ty Coon, President of Vice

That's all there is to it!
2 changes: 2 additions & 0 deletions Setup.hs
@@ -0,0 +1,2 @@
import Distribution.Simple
main = defaultMain
25 changes: 25 additions & 0 deletions gluaparser.cabal
@@ -0,0 +1,25 @@
-- Initial gluaparser.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/

name: gluaparser
version: 0.1.0.0
synopsis: A parser and several tools for the variant of Lua found in Garry's mod.
-- description:
homepage: https://github.com/FPtje/GLuaParser
license: LGPL-2.1
license-file: LICENSE
author: Falco Peijnenburg
maintainer: fpeijnenburg@gmail.com
-- copyright:
category: Language
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10

executable gluaparser
main-is: Main.hs
-- other-modules:
other-extensions: FlexibleInstances, TypeSynonymInstances, MultiParamTypeClasses, Rank2Types, FlexibleContexts, NoMonomorphismRestriction, CPP
build-depends: base >=4.7 && <4.8, filepath >=1.3 && <1.4, uu-parsinglib >=2.8 && <2.9, ListLike >=4.1 && <4.2
-- hs-source-dirs:
default-language: Haskell2010

0 comments on commit 3089f67

Please sign in to comment.