25 lines
530 B
Bash
25 lines
530 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $ jdeckert
|
|
|
|
##inherit eutils libtool autotools
|
|
|
|
DESCRIPTION="Print out GnuPG secret key"
|
|
|
|
HOMEPAGE="http://www.jabberwocky.com/software/paperkey/"
|
|
SRC_URI="http://www.jabberwocky.com/software/paperkey/${P}.tar.gz"
|
|
|
|
LICENSE="LGPL"
|
|
SLOT="0"
|
|
KEYWORDS="~x86 ~amd64"
|
|
IUSE=""
|
|
|
|
RDEPEND=""
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die
|
|
|
|
dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README
|
|
}
|