30 lines
797 B
Bash
30 lines
797 B
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-office/geierlein/geierlein-0.6.2.ebuild,v 1.2 2014/08/10 18:13:56 slyfox Exp $
|
|
|
|
EAPI=5
|
|
|
|
DESCRIPTION="Submit tax forms (Umsatzsteuervoranmeldung) to the german digital tax project ELSTER"
|
|
HOMEPAGE="http://stesie.github.com/geierlein/"
|
|
SRC_URI="https://github.com/stesie/geierlein/archive/V${PV}.tar.gz -> ${P}.tar.gz"
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE=""
|
|
RDEPEND="|| ( www-client/firefox www-client/firefox-bin )"
|
|
DEPEND=""
|
|
|
|
# needs nodejs and a couple of modules we don't have packaged
|
|
RESTRICT="test"
|
|
|
|
src_compile() {
|
|
emake prefix=/usr
|
|
}
|
|
|
|
src_install() {
|
|
emake \
|
|
DESTDIR="${D}" \
|
|
prefix=/usr \
|
|
install || die
|
|
dodoc README.md
|
|
}
|