diff options
author | Guillermo Ramos | 2020-10-22 22:47:43 +0200 |
---|---|---|
committer | Guillermo Ramos | 2020-10-22 22:47:43 +0200 |
commit | 1007a2fd4ae2228b4f04ee3800a86e79b9c1455c (patch) | |
tree | 440f9ad4bc4433bee7fbedf90457d983fc808cc8 /app-misc/mjolnir/mjolnir-1.0.ebuild | |
download | gentoo-overlay-1007a2fd4ae2228b4f04ee3800a86e79b9c1455c.tar.gz |
First commit
Diffstat (limited to 'app-misc/mjolnir/mjolnir-1.0.ebuild')
-rw-r--r-- | app-misc/mjolnir/mjolnir-1.0.ebuild | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app-misc/mjolnir/mjolnir-1.0.ebuild b/app-misc/mjolnir/mjolnir-1.0.ebuild new file mode 100644 index 0000000..5460c8e --- /dev/null +++ b/app-misc/mjolnir/mjolnir-1.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION=" Simple and portable shredder (secure file eraser)" +HOMEPAGE="https://github.com/gramosg/mjolnir" +SRC_URI="https://github.com/gramosg/mjolnir/archive/master.zip" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/"mjolnir-master" + +src_install() { + dobin mjolnir +} |