2017-03-31 11:33:49 +02:00
|
|
|
# Copyright 1999-2017 Gentoo Foundation
|
2015-04-15 12:32:51 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Header: $
|
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
|
|
|
DESCRIPTION="Command line utility converts TrueType and OpenType fonts to the WOFF format."
|
2024-06-17 17:56:41 +02:00
|
|
|
HOMEPAGE="https://github.com/doio/ttf2woff"
|
|
|
|
SRC_URI="https://github.com/doio/ttf2woff/archive/refs/tags/v1.2.tar.gz"
|
2015-04-15 12:32:51 +02:00
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="amd64"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
DEPEND=""
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
|
|
|
|
src_install() {
|
2024-06-17 17:56:41 +02:00
|
|
|
exeinto /usr/bin
|
|
|
|
doexe ttf2woff
|
2015-04-15 12:32:51 +02:00
|
|
|
}
|
|
|
|
|