blob: c9a2c595d3cc89cded846c4514ae6b4f5b442851 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit flag-o-matic git-r3 toolchain-funcs
MY_P="${PN}-${PV/_pre/-PR}"
DESCRIPTION="Identify/delete duplicate files residing within specified directories"
HOMEPAGE="https://github.com/adrianlopezroche/fdupes"
SRC_URI=""
EGIT_REPO_URI="https://github.com/adrianlopezroche/fdupes.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
S="${WORKDIR}/${MY_P}"
PATCHES=(
"${FILESDIR}"/${P}-gentoo.patch
)
src_configure() {
append-lfs-flags
tc-export CC
}
src_install() {
dobin fdupes
dodoc CHANGES CONTRIBUTORS README
doman fdupes.1
}
|