From b6b7b284b0e0704e649c2f2393cb55f4ca1e0bff Mon Sep 17 00:00:00 2001 From: Rnhmjoj Date: Tue, 14 Oct 2014 00:45:38 +0200 Subject: [PATCH] Add cabal build info --- Setup.hs | 2 ++ alea.cabal | 28 ++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 Setup.hs create mode 100644 alea.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/alea.cabal b/alea.cabal new file mode 100644 index 0000000..ceb2895 --- /dev/null +++ b/alea.cabal @@ -0,0 +1,28 @@ +name: alea +version: 0.1.0.0 +synopsis: a diceware passphrase generator +description: + + Alea is a utility that helps you generate diceware passphrases. + You can choose to roll the dice on your own or let the program + generates the words for you. + +homepage: https://github.com/Rnhmjoj/alea +license-file: LICENSE +author: Rnhmjoj +maintainer: micheleguerinirocco@me.com +copyright: (C) Michele Guerini Rocco 2014 +category: Utility +build-type: Simple +extra-source-files: README.md, LICENSE +data-files: diceware +cabal-version: >=1.10 + +executable alea + main-is: Main.hs + default-language: Haskell2010 + other-modules: Paths_alea + other-extensions: DeriveDataTypeable, RecordWildCards + build-depends: base ==4.7.* , containers ==0.5.*, + cmdargs ==0.10.*, random ==1.1.* + ghc-options: -O2 -dynamic