49 lines
1.7 KiB
Plaintext
49 lines
1.7 KiB
Plaintext
name: bisc
|
|
version: 0.4.1.0
|
|
synopsis: A small tool that clears cookies (and more).
|
|
description:
|
|
|
|
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.
|
|
|
|
|
|
homepage: https://maxwell.ydns.eu/git/rnhmjoj/bisc
|
|
license: GPL-3
|
|
license-file: LICENSE
|
|
author: Michele Guerini Rocco
|
|
maintainer: rnhmjoj@inventati.org
|
|
copyright: Copyright (C) 2022 Michele Guerini Rocco
|
|
category: Utility
|
|
build-type: Simple
|
|
extra-source-files: README.md, man/bisc.1 man/bisc.conf.5
|
|
cabal-version: >=1.10
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://maxwell.ydns.eu/git/rnhmjoj/bisc
|
|
|
|
flag static
|
|
default: False
|
|
description: Create a statically-linked binary
|
|
|
|
executable bisc
|
|
main-is: Main.hs
|
|
build-depends: base ==4.* , selda ==0.*,
|
|
selda-sqlite ==0.*,
|
|
leveldb-haskell ==0.*, resourcet,
|
|
filepath, directory, text, unix,
|
|
mtl, configurator, exceptions,
|
|
data-default, bytestring,
|
|
optparse-applicative
|
|
default-language: Haskell2010
|
|
ghc-options: -Wall -Wno-name-shadowing -O2
|
|
if flag(static)
|
|
extra-libraries: snappy stdc++
|