media-fonts/piazzolla: new package, add 2.005

Bug: https://bugs.gentoo.org/831375
Signed-off-by: Mårten Wadenbäck <spamfilter-1@wadenback.se>
This commit is contained in:
Mårten Wadenbäck
2025-03-06 13:24:00 +01:00
parent eb63aa0249
commit 0917405991
3 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
DIST piazzolla-2.005.zip 7513339 BLAKE2B 4f3f4c01f77d7ff1c0a2561281102f24ddc522831f44f466c83fce080b3f7f4ca2d9fe756ca3fc81385be41e9fd6b26daef86ad3673e24c8b6d364ad7a170dd3 SHA512 a33137130725d8128269725267eff7d7e4061cdb3a159f572b3f4c5f0287954e6be0b26d6cceb4731d453069680ceea330ba546257865d59d808ca6fb9603e8a
DIST piazzolla-sc-2.005.zip 5186258 BLAKE2B 46ee43f30e14e128104da0b7264662ce35b75930a47bbac54bc3a71b91edfc87ab7de7c239b02886d0b70548038f35d60de1e55056d94652af1b531bf986bebc SHA512 24545884341adeb6b04c853e7ea59575e32aa0594a40dc38096103a334c48adbae3b1cea70d2a075be0186d9f0c95f9e4f26b6f135f1298f5ea397e719bca46e

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>spamfilter-1@wadenback.se</email>
<name>Mårten Wadenbäck</name>
</maintainer>
<upstream>
<remote-id type="github">huertatipografica/piazzolla</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,35 @@
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN="Piazzolla"
inherit font
DESCRIPTION="Piazzolla font family"
HOMEPAGE="https://github.com/huertatipografica/piazzolla"
SRC_URI="
https://github.com/huertatipografica/${PN}/releases/download/v${PV}/${MY_PN}.zip -> ${P}.zip
https://github.com/huertatipografica/${PN}/releases/download/v${PV}/${MY_PN}SC.zip -> ${PN}-sc-${PV}.zip
"
LICENSE="OFL-1.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND=""
DEPEND="${RDEPEND}"
BDEPEND="app-arch/unzip"
DOCS=""
S="${WORKDIR}"
FONT_S="${S}/install_files"
FONT_SUFFIX="otf"
src_unpack() {
unpack ${P}.zip
unpack ${PN}-sc-${PV}.zip
mkdir install_files
mv ${MY_PN}/static/otf/* install_files/
mv ${MY_PN}SC/static/otf/* install_files/
}