24 lines
470 B
Bash
24 lines
470 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# 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."
|
|
HOMEPAGE="http://wizard.ae.krakow.pl/~jb/ttf2woff/"
|
|
SRC_URI="http://wizard.ae.krakow.pl/~jb/$PN/$P.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_install() {
|
|
exeinto /usr/bin
|
|
doexe ttf2woff
|
|
}
|
|
|