Automatically cut audio books
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

69 řádky
1.5KB

  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. - matplotlib
  28. - webrtc-vad
  29. ghc-options:
  30. - -Wall
  31. - -Wcompat
  32. - -Widentities
  33. - -Wincomplete-record-updates
  34. - -Wincomplete-uni-patterns
  35. - -Wmissing-export-lists
  36. - -Wmissing-home-modules
  37. - -Wpartial-fields
  38. - -Wredundant-constraints
  39. library:
  40. source-dirs: src
  41. executables:
  42. autocut-exe:
  43. main: Main.hs
  44. source-dirs: app
  45. ghc-options:
  46. - -threaded
  47. - -rtsopts
  48. - -with-rtsopts=-N
  49. dependencies:
  50. - autocut
  51. tests:
  52. autocut-test:
  53. main: Spec.hs
  54. source-dirs: test
  55. ghc-options:
  56. - -threaded
  57. - -rtsopts
  58. - -with-rtsopts=-N
  59. dependencies:
  60. - autocut