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.
|
|
|
|
|
|
|
|
homepage: https://gist.github.com/rnhmjoj/20ea1b366d45b1c4c0e8
|
|
|
|
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
|