hashrename/hashrename.cabal

30 lines
1.0 KiB
Plaintext
Raw Normal View History

2015-08-28 00:16:56 +02:00
name: hashrename
2015-11-22 03:27:20 +01:00
version: 0.1.1.0
2018-01-30 10:31:45 +01:00
synopsis: Rename every file in a directory with his SHA1 hash.
description:
hashrename is a small program to that renames every file in a given
directory by using (a portion) of its SHA1 hash. To clean up a messy
directory call hashrename <path> or just hashrename to use the current one.
2018-01-30 10:38:49 +01:00
homepage: https://github.com/rnhmjoj/hashrename
2018-01-30 10:31:45 +01:00
license: GPL-3
2015-08-28 00:16:56 +02:00
license-file: LICENSE
author: rnhmjoj
2018-01-30 10:31:45 +01:00
maintainer: rnhmjoj@inventati.org
2015-08-28 00:16:56 +02:00
copyright: Copyright (c) Michele Guerini Rocco
category: Utility
build-type: Simple
2018-01-30 10:31:45 +01:00
extra-source-files: README.md, LICENSE
2015-08-28 00:16:56 +02:00
cabal-version: >=1.10
2018-01-30 10:31:45 +01:00
source-repository head
type: git
location: https://github.com/rnhmjoj/hashrename
2015-08-28 00:16:56 +02:00
executable hashrename
main-is: Main.hs
2018-01-30 10:31:45 +01:00
build-depends: base >= 4.8 && <5.0, directory, filepath,
cryptohash, bytestring
2015-11-22 03:27:20 +01:00
default-language: Haskell2010