summaryrefslogtreecommitdiff
blob: f27d34c2d82a702b57c807670860655675e8365f (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
34
# 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"
EGIT_REPO_URI="https://github.com/adrianlopezroche/fdupes.git"

LICENSE="MIT"
SLOT="0"

KEYWORDS=""
SRC_URI=""

S="${WORKDIR}/${MY_P}"

PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )

DOCS=( CHANGES CONTRIBUTORS README )

src_configure() {
	append-lfs-flags
	tc-export CC
}

src_install() {
	emake PREFIX="/usr" DESTDIR="${D}" install
	einstalldocs
}