app-misc/wcal: new package, add 0.1

Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
This commit is contained in:
Haelwenn (lanodan) Monnier
2024-03-19 05:11:19 +01:00
parent d947e62bfc
commit a728e04da9
3 changed files with 31 additions and 0 deletions

1
app-misc/wcal/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST wcal-0.1.tar.gz 3417 BLAKE2B c9b9d12785f55498ef5021d3c9c05bcd756c0a2f8242f2bf918bd1b529e777b0d4e1fa7c228e62857b9df63280761cffd6eec461ef74b1a43367c48c2c7dffc2 SHA512 ee48238fa2c270a60007e0936dda37fdbdca1b02149c64608a27f459a9af0a89bd3fad54edd55fea2a848c616c7adfbde20a65a15a269b0dade0492d8010d59b

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>contact@hacktivis.me</email>
<name>Haelwenn (lanodan) Monnier</name>
</maintainer>
<upstream>
<remote-id type="github">leahneukirchen/wcal</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,19 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="ISO weekly calendar"
HOMEPAGE="https://github.com/leahneukirchen/wcal"
SRC_URI="https://github.com/leahneukirchen/wcal/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
LICENSE="CC0-1.0"
SLOT="0"
# check target in Makefile but no test cases
RESTRICT="test"
src_install() {
emake DESTDIR="${D}" PREFIX=/usr install
}