Automatically cut audio books
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

67 líneas
1.4KB

  1. name: autocut
  2. version: 0.1.0.0
  3. github: "githubuser/autocut"
  4. license: BSD3
  5. author: "Author name here"
  6. maintainer: "example@example.com"
  7. copyright: "2022 Author name here"
  8. extra-source-files:
  9. - README.md
  10. - CHANGELOG.md
  11. # Metadata used when publishing your package
  12. # synopsis: Short description of your package
  13. # category: Web
  14. # To avoid duplicated efforts in documentation and dealing with the
  15. # complications of embedding Haddock markup inside cabal files, it is
  16. # common to point users to the README.md file.
  17. description: Please see the README on GitHub at <https://github.com/githubuser/autocut#readme>
  18. dependencies:
  19. - base >= 4.7 && < 5
  20. - transformers
  21. - synthesizer-core
  22. - soxlib
  23. - numeric-prelude
  24. - utility-ht
  25. - storablevector
  26. - shell-utility
  27. ghc-options:
  28. - -Wall
  29. - -Wcompat
  30. - -Widentities
  31. - -Wincomplete-record-updates
  32. - -Wincomplete-uni-patterns
  33. - -Wmissing-export-lists
  34. - -Wmissing-home-modules
  35. - -Wpartial-fields
  36. - -Wredundant-constraints
  37. library:
  38. source-dirs: src
  39. executables:
  40. autocut-exe:
  41. main: Main.hs
  42. source-dirs: app
  43. ghc-options:
  44. - -threaded
  45. - -rtsopts
  46. - -with-rtsopts=-N
  47. dependencies:
  48. - autocut
  49. tests:
  50. autocut-test:
  51. main: Spec.hs
  52. source-dirs: test
  53. ghc-options:
  54. - -threaded
  55. - -rtsopts
  56. - -with-rtsopts=-N
  57. dependencies:
  58. - autocut