parent
861e7cc787
commit
2a1f10e92a
@ -0,0 +1 @@
|
|||||||
|
DIST shuffle3-1.0.0.tar.gz 8030 BLAKE2B e1b653bcbb32cb85e469c13c751f7ef8e65119fba36a5db70c2b6b032bb2d7619d005a8d6b31140f26525e4529c69dbfbe442952f59150f5dc5733c2c7fa3435 SHA512 a9f6c178233af48cde84b5bd1c23b03dd32c912b1d86a380d7cd7f7df49c3a8b848ee30840e620e624c538d49e5cb6ea904f8e2d6ae90b05a26221e46c28fcf6
|
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="person">
|
||||||
|
<email>avril@flanchan.moe</email>
|
||||||
|
<name>Flops</name>
|
||||||
|
</maintainer>
|
||||||
|
</pkgmetadata>
|
@ -0,0 +1,37 @@
|
|||||||
|
# Copyright 2020 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=7
|
||||||
|
|
||||||
|
DESCRIPTION="3 stage byte shuffler"
|
||||||
|
HOMEPAGE=""
|
||||||
|
SRC_URI="https://git.flanchan.moe/flanchan/shuffle3/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="GPL-4+"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~amd64 ~x86"
|
||||||
|
|
||||||
|
DEPEND=""
|
||||||
|
RDEPEND="${DEPEND}"
|
||||||
|
BDEPEND=""
|
||||||
|
|
||||||
|
IUSE="debug"
|
||||||
|
|
||||||
|
src_unpack() {
|
||||||
|
default
|
||||||
|
mv ${PN}{,-${PV}}
|
||||||
|
}
|
||||||
|
|
||||||
|
src_compile() {
|
||||||
|
if use debug; then
|
||||||
|
CFLAGS="" LDFLAGS="" emake debug
|
||||||
|
mv build/${PN}{-debug,}
|
||||||
|
else
|
||||||
|
RELEASE_CFLAGS="" RELEASE_LDFLAGS="" default
|
||||||
|
mv build/${PN}{-release,}
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
dobin build/${PN}
|
||||||
|
}
|
Loading…
Reference in new issue