alpha-quadrant/app-text/ttf2eot/ttf2eot-0.0.3-r2.ebuild

31 lines
555 B
Bash
Raw Normal View History

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
2022-08-09 16:35:17 +02:00
EAPI=7
2023-10-03 11:25:07 +02:00
#inherit eutils
DESCRIPTION="Very small utility to convert TTF files to EOT."
2017-04-04 08:46:25 +02:00
HOMEPAGE="https://github.com/wget/ttf2eot/"
SRC_URI="https://github.com/wget/${PN}/archive/v${PV}.tar.gz"
RESTRICT="primaryuri"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
src_compile() {
emake || die "Failed compiling ttf2eot."
}
src_install() {
exeinto /usr/bin
doexe ttf2eot
dodoc ChangeLog README
}