bisc/bisc.cabal

49 lines
1.7 KiB
Plaintext
Raw Permalink Normal View History

2018-09-21 21:34:31 +02:00
name: bisc
2022-01-10 19:36:31 +01:00
version: 0.4.1.0
2021-03-24 11:09:08 +01:00
synopsis: A small tool that clears cookies (and more).
2019-01-14 12:16:20 +01:00
description:
2019-06-02 11:49:03 +02:00
2021-03-24 11:09:08 +01:00
Websites can store unwanted data using all sorts of methods: besides
the usual cookies, there are also the local and session storage, the
IndexedDB API and more caches as well.
Bisc will try to go through each of them and remove all information from
websites that are not explicitly allowed (ie. a whitelist of domains).
It was created for qutebrowser, but it actually supports the storage
format used by Chromium-based browsers, which (sadly) means almost
every one nowadays.
2019-01-14 12:16:20 +01:00
2019-03-25 00:19:51 +01:00
homepage: https://maxwell.ydns.eu/git/rnhmjoj/bisc
2018-09-21 21:34:31 +02:00
license: GPL-3
license-file: LICENSE
author: Michele Guerini Rocco
maintainer: rnhmjoj@inventati.org
2022-01-10 19:57:53 +01:00
copyright: Copyright (C) 2022 Michele Guerini Rocco
2018-09-21 21:34:31 +02:00
category: Utility
build-type: Simple
2021-09-07 13:56:43 +02:00
extra-source-files: README.md, man/bisc.1 man/bisc.conf.5
2018-09-21 21:34:31 +02:00
cabal-version: >=1.10
2019-03-25 00:19:51 +01:00
source-repository head
type: git
location: https://maxwell.ydns.eu/git/rnhmjoj/bisc
flag static
default: False
description: Create a statically-linked binary
2018-09-21 21:34:31 +02:00
executable bisc
main-is: Main.hs
2019-08-22 16:09:41 +02:00
build-depends: base ==4.* , selda ==0.*,
selda-sqlite ==0.*,
2022-01-02 02:34:27 +01:00
leveldb-haskell ==0.*, resourcet,
filepath, directory, text, unix,
2021-05-10 17:12:44 +02:00
mtl, configurator, exceptions,
2021-09-06 00:02:14 +02:00
data-default, bytestring,
optparse-applicative
2018-09-21 21:34:31 +02:00
default-language: Haskell2010
2022-01-02 02:35:14 +01:00
ghc-options: -Wall -Wno-name-shadowing -O2
if flag(static)
extra-libraries: snappy stdc++