そして夕暮れ時には隕石が降る
Signed-off-by: Shin'ya Minazuki <shinyoukai@laidback.moe>
This commit is contained in:
parent
56524916b1
commit
16a023163a
9 changed files with 149 additions and 0 deletions
41
x11-misc/wmutils/wmutils-1.7.ebuild
Normal file
41
x11-misc/wmutils/wmutils-1.7.ebuild
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# Copyright 2026 Shin'ya Minazuki
|
||||
EAPI=8
|
||||
|
||||
inherit toolchain-funcs
|
||||
|
||||
DESCRIPTION="Set of window manipulation tools"
|
||||
HOMEPAGE="https://github.com/wmutils/core"
|
||||
SRC_URI="https://github.com/wmutils/core/archive/refs/tags/v1.7.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/core-${PV}"
|
||||
|
||||
LICENSE="ISC"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
DEPEND="
|
||||
x11-libs/libxcb
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
RESTRICT="mirror"
|
||||
|
||||
src_configure() {
|
||||
elog "Populating ${S}/config.mk with new values..."
|
||||
echo "CC = $(tc-getCC)" > config.mk
|
||||
echo "CFLAGS = -std=c99 -pedantic -Wall ${CFLAGS}" >> config.mk
|
||||
echo "LD = $(tc-getLD)" >> config.mk
|
||||
echo "PREFIX = ${EPREFIX}/usr" >> config.mk
|
||||
echo "MANDIR = ${EPREFIX}/usr/share/man" >> config.mk
|
||||
echo "DESTDIR = ${D}" >> config.mk
|
||||
elog "Done."
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
# DESTDIR has already been set in the configure step
|
||||
emake install
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue