You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-misc/fdupes/fdupes-9999.ebuild

35 lines
676 B

# 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
}