summaryrefslogtreecommitdiff
blob: 38f462150d705077809e31855a50e91702a7a742 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

TAG=${PV/0./}

DESCRIPTION="A command line tool to convert TrueType/OpenType fonts to WOFF format"
HOMEPAGE="https://github.com/wget/sfnt2woff"
SRC_URI="https://github.com/wget/sfnt2woff/archive/${TAG}.tar.gz -> ${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""

S="${WORKDIR}/${PN}-${TAG}"

src_install() {
	dodoc README.md
	dobin sfnt2woff
	dobin woff2sfnt
}