X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx1.riseup.net (mx1.riseup.net [198.252.153.129]) by lists.alpinelinux.org (Postfix) with ESMTP id DB9545C4CFC for ; Sun, 24 Sep 2017 09:27:25 +0000 (GMT) Received: from cotinga.riseup.net (unknown [10.0.1.164]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id 6FA321A08DF for ; Sun, 24 Sep 2017 09:27:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1506245244; bh=tiWTBF2YxKu37aS+cjLO3ifPeA2tKHaRb08hfNWgUNQ=; h=From:To:Subject:Date:From; b=eJy4VFRBjquXASI16eNvoBzOAlGdg+4V5+dVt2gVfrKmmvGH1DdpeCLDdpVlaskDQ SkWVTqiL+PRtAqxZ+kLc/i+dUm/vPYhtTZA9doBW1eHmd4Xdpio38kmbHyb0MWIkD2 5GWCz7Gt1SD0H0Z0d6b0Jqtd8uj/ZeLEInnuev3w= Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: pickfire@riseup.net) by (cotinga) with ESMTPSA id 9F4BC44AE1 From: Ivan Tham To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 1/2] testing/ttf-hack: new aport Date: Sun, 24 Sep 2017 17:27:12 +0800 Message-Id: <20170924092713.18926-1-pickfire@riseup.net> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: http://sourcefoundry.org/hack/ A typeface designed for source code --- testing/ttf-hack/APKBUILD | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 testing/ttf-hack/APKBUILD diff --git a/testing/ttf-hack/APKBUILD b/testing/ttf-hack/APKBUILD new file mode 100644 index 0000000000..054c851e64 --- /dev/null +++ b/testing/ttf-hack/APKBUILD @@ -0,0 +1,19 @@ +# Contributor: Ivan Tham +# Maintainer: Ivan Tham +pkgname=ttf-hack +pkgver=2.020 +pkgrel=0 +pkgdesc="A typeface designed for source code" +url="http://sourcefoundry.org/hack/" +arch="all" +license="OFL" +depends="fontconfig mkfontscale" +source="https://github.com/source-foundry/Hack/releases/download/v${pkgver}/Hack-v${pkgver/./_}-ttf.zip" +builddir="$srcdir/" + +package() { + mkdir -p "$pkgdir"/usr/share/fonts/$pkgname + install -m644 "$srcdir"/*.ttf "$pkgdir"/usr/share/fonts/$pkgname +} + +sha512sums="de3c8e13ace5ee49bb2b5dd331cc3109ad12b762f967c88cdf8f0d1080e5c3cb99d2dffe1c986c9fcc6e46e31c3bc7141cf1c9e1b8430d1ef76a90ab461d1a09 Hack-v2_020-ttf.zip" -- 2.14.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---