Merge branch 'master' of gitlab.com:rexy712/rexy712-overlay

This commit is contained in:
rexy712 2019-05-11 08:09:26 -07:00
commit c896ac2148
3 changed files with 41 additions and 0 deletions

1
sys-apps/strlen/Manifest Normal file
View File

@ -0,0 +1 @@
DIST strlen-v1.0.tar.gz 14320 BLAKE2B 3a61e3bcb902d7be3e9ad775749b1bafbdb01c63320ddc329593b2460c6db0c2363b16bf0e34375b1fe946c916ef4fb7d6b0689c0ddc7952e76c02a1e03f74ad SHA512 05687e4e4f54c847dc760a97114e333a3286f32ab6aa305696427a5bd468e3b295cecd799c6755382d4ea8b7be64930cbc5a9adcc18910a6a92dae5d87930925

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>rexerton.rexy@gmail.com</email>
<name>rexy712</name>
</maintainer>
<longdescription>
A cli frontend for the C library's strlen function.
</longdescription>
</pkgmetadata>

View File

@ -0,0 +1,28 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Terminal program to utilize C library's strlen"
HOMEPAGE="https://gitlab.com/rexy712/strlen"
MY_PV="v${PV}"
MY_P="${PN}-${MY_PV}"
SRC_URI="https://gitlab.com/rexy712/strlen/-/archive/${MY_PV}/strlen-${MY_PV}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}"
BDEPEND=""
src_configure(){
return
}
src_compile(){
emake all
}