2016-01-26 06:29:49 +00:00
|
|
|
# Package
|
2024-08-05 11:15:51 +00:00
|
|
|
version = "2.0.1"
|
2015-02-10 00:38:40 +00:00
|
|
|
author = "Jonathan Bernard (jdb@jdb-labs.com)"
|
2016-01-26 06:29:49 +00:00
|
|
|
description = "Utility to generate diffs of full directory trees."
|
2015-02-10 00:38:40 +00:00
|
|
|
license = "BSD"
|
2016-01-26 06:29:49 +00:00
|
|
|
bin = @["treediff"]
|
2016-01-26 06:32:41 +00:00
|
|
|
srcDir = "src/main/nim"
|
2015-02-10 00:38:40 +00:00
|
|
|
|
2016-01-26 06:29:49 +00:00
|
|
|
# Dependencies
|
2024-08-05 11:15:51 +00:00
|
|
|
requires: @["nim >= 2.0.0", "docopt == 0.7.1", "checksums"]
|
2023-02-15 13:19:15 +00:00
|
|
|
|
|
|
|
# Dependencies from git.jdb-software.com/jdb/nim-packages
|
2024-08-05 11:15:51 +00:00
|
|
|
requires: @["console_progress >= 1.2.2", "update_nim_package_version"]
|
2023-02-15 13:19:15 +00:00
|
|
|
|
|
|
|
task updateVersion, "Update the version of this package.":
|
2024-08-05 11:15:51 +00:00
|
|
|
exec "update_nim_package_version treediff 'src/main/nim/cliconstants.nim'"
|