URI: 
       hurl-9999.ebuild - parlay - yet another gentoo overlay
  HTML git clone https://git.parazyd.org/parlay
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
       hurl-9999.ebuild (530B)
       ---
            1 # Copyright 1999-2025 Gentoo Authors
            2 # Distributed under the terms of the GNU General Public License v2
            3 
            4 EAPI=8
            5 
            6 inherit git-r3
            7 
            8 DESCRIPTION="Gopher/HTTP/HTTPS file grabber"
            9 HOMEPAGE="https://git.codemadness.org/hurl/"
           10 EGIT_REPO_URI="git://git.codemadness.org/hurl"
           11 
           12 LICENSE="ISC"
           13 SLOT="0"
           14 KEYWORDS=""
           15 
           16 DEPEND="
           17         dev-libs/libretls
           18         dev-libs/libbsd
           19 "
           20 
           21 src_compile() {
           22         emake all
           23 }
           24 
           25 src_install() {
           26         emake \
           27                 DESTDIR="${D}" \
           28                 PREFIX="${EPREFIX}/usr" \
           29                 MANDIR="${EPREFIX}/usr/share/man/man1" \
           30                 install
           31         dodoc README hurl.vt
           32 }