summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app-misc/jdupes/jdupes-scm.ebuild28
1 files changed, 28 insertions, 0 deletions
diff --git a/app-misc/jdupes/jdupes-scm.ebuild b/app-misc/jdupes/jdupes-scm.ebuild
new file mode 100644
index 0000000..19aa244
--- /dev/null
+++ b/app-misc/jdupes/jdupes-scm.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils git-r3 toolchain-funcs
+
+
+DESCRIPTION="Identify/delete duplicate files residing within specified directories"
+HOMEPAGE="https://github.com/jbruchon/jdupes.git"
+SRC_URI=""
+EGIT_REPO_URI="https://github.com/jbruchon/jdupes.git"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS=""
+IUSE=""
+
+
+src_compile() {
+ emake
+}
+
+src_install() {
+ dobin jdupes
+ doman jdupes.1
+}