sys-process/xe: new package, add 1.0

Signed-off-by: Carlos Eduardo <carana2099@gmail.com>
This commit is contained in:
Carlos Eduardo
2024-05-08 22:16:14 -03:00
parent 5832ae8580
commit 144d5b7eee
3 changed files with 30 additions and 0 deletions

1
sys-process/xe/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST xe-1.0.tar.gz 13791 BLAKE2B 87ca4ffc11b4c9b030f09c74a044c916d3d302f302c4156f07c78ef5870d3053380ad04e3c6b07ae44ceeb97a7cdae686c54fb94b7a0238678d29f7d014d926a SHA512 b0401497e695dd04f17ae29c5113e3638c9b9d7b8ffda7b5fb4a1e3290626f66ca85ae6932cd27e35e077ff0c737f307f708ff44779096a34e3132a056d78e84

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>carana2099@gmail.org</email>
<description>Carlos E.</description>
</maintainer>
<upstream>
<remote-id type="github">leahneukirchen/xe</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,18 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Simple xargs and apply replacement with sane defaults"
HOMEPAGE="https://github.com/leahneukirchen/xe/"
SRC_URI="https://github.com/leahneukirchen/xe/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="CC0-1.0"
SLOT="0"
KEYWORDS="~amd64"
src_compile() {
emake CC="$CC" CFLAGS="$CFLAGS"
}
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
}