2016-01-26 06:29:49 +00:00
|
|
|
# Package
|
2024-02-14 18:18:40 +00:00
|
|
|
version = "2.0.0"
|
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
|
2023-02-15 13:19:15 +00:00
|
|
|
requires: @["nim >= 1.0.4", "docopt >= 0.6.8"]
|
|
|
|
|
|
|
|
# Dependencies from git.jdb-software.com/jdb/nim-packages
|
|
|
|
requires: @["console_progress >= 1.2.2"]
|
|
|
|
requires "https://git.jdb-software.com/jdb/update-nim-package-version.git"
|
|
|
|
|
|
|
|
task updateVersion, "Update the version of this package.":
|
|
|
|
exec "update_nim_package_version treediff 'src/main/nim/cliconstants.nim'"
|