From a5c53412a6b3046026af049da5e1c2629fb660d5 Mon Sep 17 00:00:00 2001 From: thepenguin Date: Wed, 26 Oct 2022 12:46:45 +0200 Subject: [PATCH] renamed project and created readme --- README.org | 5 +++++ app/Main.hs | 4 ++-- org-to-mafiauniverse.cabal => otm.cabal | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 README.org rename org-to-mafiauniverse.cabal => otm.cabal (97%) diff --git a/README.org b/README.org new file mode 100644 index 0000000..1f97f66 --- /dev/null +++ b/README.org @@ -0,0 +1,5 @@ +#+title: otm + +Org to mafiauniverse is a parser which transforms org text into forum posts for the forum mafiauniverse. + +The name is pronounced like autumn. diff --git a/app/Main.hs b/app/Main.hs index 1d1bd25..ffc2016 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -22,8 +22,8 @@ useArgs ('v':_) = version >> exit useArgs (_:xs) = useArgs xs usage :: IO () -usage = putStrLn "Usage: \"PENDINGNAME\" [-hv] [file]" +usage = putStrLn "Usage: otm [-hv] [file]" version :: IO () -version = putStrLn "\"PENDINGNAME\" 0.1" +version = putStrLn "otm 0.1" exit :: IO a exit = exitWith ExitSuccess diff --git a/org-to-mafiauniverse.cabal b/otm.cabal similarity index 97% rename from org-to-mafiauniverse.cabal rename to otm.cabal index 087d50e..4ba2393 100644 --- a/org-to-mafiauniverse.cabal +++ b/otm.cabal @@ -11,7 +11,7 @@ cabal-version: 3.4 -- http://haskell.org/cabal/users-guide/ -- -- The name of the package. -name: org-to-mafiauniverse +name: otm -- The package version. -- See the Haskell package versioning policy (PVP) for standards @@ -53,7 +53,7 @@ extra-doc-files: CHANGELOG.md common warnings ghc-options: -Wall -executable org-to-mafiauniverse +executable otm -- Import common warning flags. import: warnings