blob: 3d57bf27b1ffc4d3c67987dac1c33d7d324cde1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Distributed under the terms of the GNU General Public License v2
SCM_REPOSITORY="https://github.com/jbruchon/jdupes.git"
require scm-git
DOWNLOADS=""
SUMMARY="Identify/delete duplicate files residing within specified directories"
HOMEPAGE="https://github.com/jbruchon/jdupes.git"
LICENCES="MIT"
SLOT="0"
PLATFORMS="~amd64 ~x86"
RESTRICT="test"
src_install() {
default
edo cd "${IMAGE}"
nonfatal edo mkdir -p usr/$(exhost --target)/bin
edo mv usr/bin/* usr/$(exhost --target)/bin/
edo rmdir usr/bin
}
|