mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
58 lines
1.2 KiB
Bash
58 lines
1.2 KiB
Bash
# Copyright 2019-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="minimalistic commandline pastebin"
|
|
HOMEPAGE="https://bsd.ac"
|
|
|
|
inherit systemd meson
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/PurritoBin/PurritoBin.git"
|
|
else
|
|
SRC_URI="https://github.com/PurritoBin/PurritoBin/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~x86"
|
|
S="${WORKDIR}/PurritoBin-${PV}"
|
|
fi
|
|
|
|
LICENSE="ISC"
|
|
SLOT="0"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND="
|
|
>=dev-db/lmdb-0.9.29
|
|
net-libs/usockets[ssl]
|
|
acct-user/purritobin
|
|
acct-group/purritobin
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
www-apps/uwebsockets
|
|
>=dev-db/lmdb++-1.0.0
|
|
"
|
|
BDEPEND="test? (
|
|
net-misc/curl[ssl]
|
|
sys-apps/coreutils
|
|
)"
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
$(meson_use test enable_testing)
|
|
-Dtest_dd_flags="iflag=fullblock"
|
|
)
|
|
meson_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
meson_src_install
|
|
insinto /var/www/purritobin
|
|
doins frontend/paste.html
|
|
keepdir /var/db/purritobin
|
|
fowners purritobin:purritobin /var/www/purritobin /var/db/purritobin
|
|
newinitd services/openrc purritobin
|
|
systemd_newunit services/systemd purritobin.service
|
|
einstalldocs
|
|
}
|