www-servers/quark - 9999 (guru)

Search

Install

Install this version:

emerge -a =www-servers/quark-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =www-servers/quark-9999

Or alternatively:

emerge --autounmask-write -a =www-servers/quark-9999

Package Information

Description:
A small, GET-only static HTTP server
Homepage:
https://tools.suckless.org/quark/
License:
ISC

Ebuild Details

Version EAPI Keywords Slot
9999 8 0
View Raw Ebuild
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit git-r3 toolchain-funcs

DESCRIPTION="A small, GET-only static HTTP server"
HOMEPAGE="https://tools.suckless.org/quark/"
EGIT_REPO_URI="https://git.suckless.org/quark/"

if [[ ${PV} != *9999* ]]; then
	EGIT_COMMIT=""
fi

LICENSE="ISC"
SLOT="0"

PATCHES=(
	"${FILESDIR}"/quark-9999-configure.patch
)

src_configure() {
	export CC=$(tc-getCC)
	export PREFIX="${EPREFIX}"/usr
}

Inherited Eclasses