diff --git a/LICENSE b/LICENSE index 19e3071..e5ab03e 100644 --- a/LICENSE +++ b/LICENSE @@ -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 @@ -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} + + Copyright (C) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -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. @@ -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 + , 1 April 1990 Ty Coon, President of Vice That's all there is to it! diff --git a/Setup.hs b/Setup.hs new file mode 100644 index 0000000..9a994af --- /dev/null +++ b/Setup.hs @@ -0,0 +1,2 @@ +import Distribution.Simple +main = defaultMain diff --git a/gluaparser.cabal b/gluaparser.cabal new file mode 100644 index 0000000..1fa6cb5 --- /dev/null +++ b/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