parent
c4b8f8c846
commit
d4b500de25
@ -1 +1,2 @@
|
|||||||
DIST fcmp-0.1.0.tar.gz 1737 BLAKE2B f90a00d17db10da07ab75a2ac75dff06985437540e7f4ccfbcf3c3304422cf332a1737bbda31bdf6952a7e5f4fc11a26034fb4403433588271f66f8f0a271ba5 SHA512 be9a60a83cfaa947374084027e83fa987e74eaf191d95fa8d82d06eb6f0ee55d6d98c0fa04adce878a285ab33d020177281d06b688a1ce9616882e70dbc07e2e
|
DIST fcmp-0.1.0.tar.gz 1737 BLAKE2B f90a00d17db10da07ab75a2ac75dff06985437540e7f4ccfbcf3c3304422cf332a1737bbda31bdf6952a7e5f4fc11a26034fb4403433588271f66f8f0a271ba5 SHA512 be9a60a83cfaa947374084027e83fa987e74eaf191d95fa8d82d06eb6f0ee55d6d98c0fa04adce878a285ab33d020177281d06b688a1ce9616882e70dbc07e2e
|
||||||
|
DIST fcmp-0.1.1.tar.gz 14613 BLAKE2B c21ae434512d0305cf1fbc25ac361b2480ff43095b98d06fe4cfbeae43e8ad913c2de278411a8950f466cc9e500491ce4b583bd64023f1d2ca68fb4184d218dc SHA512 2640234317163f66e9f5b151822f72579f786126d5bbb1df8fd84a32078b31f1d10672b5c6d42e147753e21c6c23971b3a83c1f84afddf233e87acd3128b1a36
|
||||||
|
@ -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/v${PV}.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}
|
||||||
|
}
|
Loading…
Reference in new issue