parent
2a1f10e92a
commit
c4b8f8c846
@ -0,0 +1 @@
|
|||||||
|
DIST fcmp-0.1.0.tar.gz 1737 BLAKE2B f90a00d17db10da07ab75a2ac75dff06985437540e7f4ccfbcf3c3304422cf332a1737bbda31bdf6952a7e5f4fc11a26034fb4403433588271f66f8f0a271ba5 SHA512 be9a60a83cfaa947374084027e83fa987e74eaf191d95fa8d82d06eb6f0ee55d6d98c0fa04adce878a285ab33d020177281d06b688a1ce9616882e70dbc07e2e
|
@ -0,0 +1,37 @@
|
|||||||
|
# Copyright 2020 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=7
|
||||||
|
|
||||||
|
DESCRIPTION="Quickly compare files for identity"
|
||||||
|
HOMEPAGE="https://git.flanchan.moe/flanchan/fcmp"
|
||||||
|
SRC_URI="https://git.flanchan.moe/flanchan/fcmp/archive/v0.1.0.tar.gz -> ${P}.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="GPL-3+"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~amd64 ~x86"
|
||||||
|
|
||||||
|
DEPEND=""
|
||||||
|
RDEPEND="${DEPEND}"
|
||||||
|
BDEPEND=""
|
||||||
|
|
||||||
|
IUSE="debug"
|
||||||
|
|
||||||
|
src_unpack() {
|
||||||
|
default
|
||||||
|
mv ${PN} ${P}
|
||||||
|
}
|
||||||
|
|
||||||
|
src_compile() {
|
||||||
|
if use debug; then
|
||||||
|
CFLAGS="" LDFLAGS="" emake debug
|
||||||
|
mv ${PN}-debug ${PN}
|
||||||
|
else
|
||||||
|
RELEASE_CFLAGS="" RELEASE_LDFLAGS="" default
|
||||||
|
mv ${PN}-release ${PN}
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
dobin ${PN}
|
||||||
|
}
|
@ -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>
|
Loading…
Reference in new issue