mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-19 15:59:00 -04:00
no keywords in git-r3/9999 ebuilds please Package-Manager: Portage-3.0.23, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
20 lines
462 B
Bash
20 lines
462 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
inherit git-r3
|
|
DESCRIPTION="A small, GET-only static HTTP server"
|
|
HOMEPAGE="https://tools.suckless.org/quark/"
|
|
EGIT_REPO_URI="https://git.suckless.org/quark/"
|
|
S="${WORKDIR}/${P}"
|
|
|
|
LICENSE="ISC"
|
|
SLOT="0"
|
|
|
|
src_configure() {
|
|
sed -in 's/local//' config.mk
|
|
sed -in 's/d -s/d/' config.mk
|
|
sed -in 's/CF/#CF/' config.mk
|
|
sed -in 's/CPP/#CPP/' config.mk
|
|
}
|