dev-build/qtilitools: new package, add 0.1.2

Signed-off-by: Thomas Clarke <TomClarke2006@hotmail.com>
This commit is contained in:
Thomas Clarke
2024-05-29 15:32:01 +01:00
parent 520876d822
commit e8d01eaf2d
3 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST 0.1.2.tar.gz 6964 BLAKE2B a67b90944ea9168702c71f846cd6c228f6f997d68ca18b367913ab67d67fb5ea10a588c5dbacb61dc3ff5827ebe9a4c8a8cc2e9910a1e65959f6147b67f29229 SHA512 fc4313ab29ce0da8cc62fe30626acfe2782ce05699be871c3e90c813631ca69db7245863fa7ae66a3b9d7ec4194cb15e532cdc45e83db51004172df8662ef2e2

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>tomclarke2006@gotmail.com</email>
<name>Thomas Clarke</name>
</maintainer>
<longdescription>
Scripts/commands used in the Qtilities organization
</longdescription>
<upstream>
<remote-id type="github">qtilities/qtilitools</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,26 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Scripts/commands used in the Qtilities organization "
HOMEPAGE="https://qtilities.github.io/"
SRC_URI="https://github.com/qtilities/${PN}/archive/refs/tags/${PV}.tar.gz"
S="${WORKDIR}/${PN}-0.1.2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
src_configure() {
local mycmakeargs=(
"-DCMAKE_INSTALL_PREFIX=/usr"
)
cmake_src_configure
}
src_install() {
cmake_src_install
}