app-misc/pup-bin: new package

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Simon van der Maas <svdm-gentoo@protonmail.com>
This commit is contained in:
Simon van der Maas
2021-02-21 13:03:52 +01:00
parent 0c73a76e39
commit f938068c43
3 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST pup_v0.4.0_linux_amd64.zip 1718186 BLAKE2B 07f96a42e2f58db882f96c624ed7748efcd3d978a4d806b87d03fd40157baf492a2484cf37b4dd854b689e2d29ec87a213ce627ea42dc87d3d17f7fdc9b70f74 SHA512 a395ed85e45db60c0b4142423d7938cbbb28346946b92cfc43625828aaf87ca70fe841ad15ee85cb7070889097c480368befe64acf6d736849e97c67b09b1cca

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>svdm-gentoo@protonmail.com</email>
<name>Simon van der Maas</name>
</maintainer>
</pkgmetadata>

View File

@@ -0,0 +1,24 @@
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit unpacker
DESCRIPTION="Parsing HTML at the command line"
HOMEPAGE="https://github.com/ericchiang/pup"
SRC_URI="https://github.com/ericchiang/pup/releases/download/v${PV}/pup_v${PV}_linux_amd64.zip"
S="${WORKDIR}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
src_configure() {
unpack_zip "${DISTDIR}"/pup_v"${PV}"_linux_amd64.zip
}
src_install() {
dobin pup
}