2015-04-08 22:13:02 +02:00
|
|
|
name: breve
|
2015-04-21 17:44:05 +02:00
|
|
|
version: 0.1.1.0
|
2015-04-08 21:38:38 +02:00
|
|
|
synopsis: a url shortener
|
|
|
|
description:
|
2015-04-09 17:24:16 +02:00
|
|
|
|
|
|
|
Breve is a web application that provides a simple interface to
|
2015-04-09 22:26:18 +02:00
|
|
|
shortening long urls creating links smaller and easier to remember.
|
2015-04-08 21:38:38 +02:00
|
|
|
|
2015-04-08 22:13:02 +02:00
|
|
|
homepage: https://github.com/rnhmjoj/breve
|
2015-04-08 21:38:38 +02:00
|
|
|
license: MIT
|
|
|
|
license-file: LICENSE
|
2015-04-08 12:47:56 +02:00
|
|
|
author: Rnhmjoj
|
|
|
|
maintainer: micheleguerinirocco@me.com
|
2015-04-08 21:38:38 +02:00
|
|
|
copyright: (C) Michele Guerini Rocco 2015
|
2015-04-08 12:47:56 +02:00
|
|
|
category: Web
|
|
|
|
build-type: Simple
|
2015-04-08 21:38:38 +02:00
|
|
|
extra-source-files: README.md, LICENSE
|
2015-04-21 17:44:05 +02:00
|
|
|
data-files: static/*.png, static/*.html, static/*.css,
|
|
|
|
views/*.html
|
2015-04-08 21:38:38 +02:00
|
|
|
cabal-version: >=1.10
|
2015-04-08 12:47:56 +02:00
|
|
|
|
2015-04-08 22:13:02 +02:00
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: https://github.com/rnhmjoj/breve
|
|
|
|
|
|
|
|
executable breve
|
2015-04-08 12:47:56 +02:00
|
|
|
main-is: Main.hs
|
2015-04-09 17:10:55 +02:00
|
|
|
hs-source-dirs: src
|
2015-04-08 21:38:38 +02:00
|
|
|
default-language: Haskell2010
|
2015-04-09 17:10:55 +02:00
|
|
|
other-modules: Application, Breve.Common,
|
|
|
|
Breve.Generator, Breve.UrlTable
|
|
|
|
other-extensions: OverloadedStrings
|
2015-04-11 19:20:01 +02:00
|
|
|
build-depends: base >=4.8 && <5.0,
|
|
|
|
simple, wai, wai-extra, warp,
|
2015-04-11 18:52:19 +02:00
|
|
|
aeson, bytestring, binary,
|
|
|
|
transformers, mtl,
|
|
|
|
hashtables, cryptohash, random,
|
2015-04-20 22:18:27 +02:00
|
|
|
xdg-basedir, configurator, directory
|
2015-04-08 21:38:38 +02:00
|
|
|
ghc-options: -threaded -O2
|