-- Initial batch-rename.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ -- The name of the package. name: batch-rename -- The package version. See the Haskell package versioning policy (PVP) -- for standards guiding when and how versions should be incremented. -- http://www.haskell.org/haskellwiki/Package_versioning_policy -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change version: 0.1.0.8 -- A short (one-line) description of the package. synopsis: Make linux or macos do things like "rename *.mp3 *.mp4" in Windows/MSDOS -- A longer description of the package. description: Do you remember the convenient command `rn' in MSDOS? When you want to change all your .mp3 files to .mp4. Simply type \"rn *.mp3 *.mp4.\". I really like this. But in linux\/Mac world, people keep asking how.(http:\/\/bit.ly\/2cIskUu) So maybe this little tool can help you a lot. -- URL for the project homepage or repository. homepage: https://github.com/uppet/batch_rename -- The license under which the package is released. license: PublicDomain -- The file containing the license text. license-file: LICENSE -- The package author(s). author: Joyer Huang -- An email address to which users can send suggestions, bug reports, and -- patches. maintainer: collger@gmail.com -- A copyright notice. -- copyright: category: System build-type: Simple -- Extra files to be distributed with the package, such as examples or a -- README. extra-source-files: README.md -- Constraint on the version of Cabal needed to build this package. cabal-version: >=1.10 executable batch_rename -- .hs or .lhs file containing the Main module. main-is: batchRename.hs -- Modules included in this executable, other than Main. -- other-modules: -- LANGUAGE extensions used by modules in this package. -- other-extensions: -- Other library packages from which modules are imported. build-depends: base < 5, Glob, filepath >=1.0, directory -- Directories containing source files. -- hs-source-dirs: -- Base language which the package is written in. default-language: Haskell2010