From 81cd849ed3ed9cb94ca8bc6c48e305dd0b6178cc Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Sat, 25 Jan 2014 09:57:15 +0100 Subject: [PATCH] cabal init --- Setup.hs | 2 ++ puzzle-draw.cabal | 53 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 Setup.hs create mode 100644 puzzle-draw.cabal 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/puzzle-draw.cabal b/puzzle-draw.cabal new file mode 100644 index 0000000..a190b8d --- /dev/null +++ b/puzzle-draw.cabal @@ -0,0 +1,53 @@ +-- Initial puzzle-draw.cabal generated by cabal init. For further +-- documentation, see http://haskell.org/cabal/users-guide/ + +-- The name of the package. +name: puzzle-draw + +-- The package version. See the Haskell package versioning policy (PVP) +-- for standards guiding when and how versions should be incremented. +-- http://www.haskell.org/haskellwiki/Package_versioning_policy +-- PVP summary: +-+------- breaking API changes +-- | | +----- non-breaking API additions +-- | | | +--- code changes with no API change +version: 0.1.0.0 + +-- A short (one-line) description of the package. +synopsis: Creating graphics for logic puzzles + +-- A longer description of the package. +-- description: + +-- The license under which the package is released. +license: MIT + +-- The file containing the license text. +license-file: LICENSE + +-- The package author(s). +author: Robert Vollmert + +-- An email address to which users can send suggestions, bug reports, and +-- patches. +maintainer: rob@krikkit.org + +-- A copyright notice. +-- copyright: + +category: Graphics + +build-type: Simple + +-- Constraint on the version of Cabal needed to build this package. +cabal-version: >=1.8 + + +library + -- Modules exported by the library. + -- exposed-modules: + + -- Modules included in this library but not exported. + -- other-modules: + + -- Other library packages from which modules are imported. + build-depends: base ==4.5.*