diff options
author | Alexander Kapshuna <kapsh@kap.sh> | 2018-11-09 20:30:04 +0300 |
---|---|---|
committer | Alexander Kapshuna <kapsh@kap.sh> | 2018-11-10 17:50:26 +0300 |
commit | 2cdfa9edf7d392f7b05034d46166fe3f3c704a7c (patch) | |
tree | 794b1f1c81243c25651ae554d2e7e719a012ca23 | |
parent | 386802711937117a832a8dce2bc7487ebc51d1ab (diff) |
jdupes: convert to exlib
-rw-r--r-- | packages/app-misc/jdupes/jdupes-scm.exheres-0 | 14 | ||||
-rw-r--r-- | packages/app-misc/jdupes/jdupes.exlib | 16 |
2 files changed, 17 insertions, 13 deletions
diff --git a/packages/app-misc/jdupes/jdupes-scm.exheres-0 b/packages/app-misc/jdupes/jdupes-scm.exheres-0 index 92f15de..12beb79 100644 --- a/packages/app-misc/jdupes/jdupes-scm.exheres-0 +++ b/packages/app-misc/jdupes/jdupes-scm.exheres-0 @@ -1,19 +1,7 @@ # Distributed under the terms of the GNU General Public License v2 # Copyright 2018 Gluzskiy Alexandr <sss@sss.chaoslab.ru> -require github [ user=jbruchon ] +require jdupes -DOWNLOADS="" -SUMMARY="Identify/delete duplicate files residing within specified directories" -LICENCES="MIT" -SLOT="0" PLATFORMS="~amd64 ~x86" -RESTRICT="test" -#./test.sh -#make: ./test.sh: Command not found - - -DEFAULT_SRC_INSTALL_PARAMS=( - PREFIX=/usr/$(exhost --target) -) diff --git a/packages/app-misc/jdupes/jdupes.exlib b/packages/app-misc/jdupes/jdupes.exlib new file mode 100644 index 0000000..8b8dbe5 --- /dev/null +++ b/packages/app-misc/jdupes/jdupes.exlib @@ -0,0 +1,16 @@ +# Distributed under the terms of the GNU General Public License v2 +# Copyright 2018 Gluzskiy Alexandr <sss@sss.chaoslab.ru> + +require github [ user=jbruchon tag=v${PV} ] + +SUMMARY="Identify/delete duplicate files residing within specified directories" +LICENCES="MIT" +SLOT="0" + +# Test suite removed: https://github.com/jbruchon/jdupes/issues/86 +RESTRICT="test" + +DEFAULT_SRC_INSTALL_PARAMS=( + BIN_DIR=/usr/$(exhost --target)/bin +) + |