parent
c9b9970848
commit
75ee78c455
@ -0,0 +1 @@
|
|||||||
|
DIST hexview-0.1.0.tar.gz 2733 BLAKE2B 4d624a46feee9f4acbb4c7b721e781812f7e2b691c5366a4f962a4516d2719936d866b39159111c1ebd0658586f5ead9485542a507ca9aa6ae4bbd8d0ce54c67 SHA512 36d928c36356ab9cfc91dad96b1de0fe14eaf6f65f3df0983964d37f5d81c05145b56e3aefd0521d299b0a70a27469b27b3fbddff75f8c25b2274062e88adccd
|
@ -0,0 +1,35 @@
|
|||||||
|
# Copyright 2020 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=7
|
||||||
|
|
||||||
|
DESCRIPTION="View hex of binary files"
|
||||||
|
HOMEPAGE="https://git.flanchan.moe/flanchan/hexview"
|
||||||
|
SRC_URI="https://git.flanchan.moe/flanchan/hexview/archive/v0.1.0.tar.gz -> hexview-0.1.0.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="GPL-3+"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~amd64 ~x86"
|
||||||
|
|
||||||
|
DEPEND=""
|
||||||
|
RDEPEND="${DEPEND}"
|
||||||
|
BDEPEND=""
|
||||||
|
|
||||||
|
src_unpack() {
|
||||||
|
default
|
||||||
|
mv ${WORKDIR}/hexview{,-0.1.0}
|
||||||
|
}
|
||||||
|
|
||||||
|
src_compile() {
|
||||||
|
unset FEATURES
|
||||||
|
mkdir ${S}/build
|
||||||
|
default
|
||||||
|
strip ${S}/build/hexview
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
mkdir -p ${D}/usr/bin
|
||||||
|
emake bindir=/usr/bin DESTDIR="${D}" install
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="person">
|
||||||
|
<email>flanchan@cumallover.me</email>
|
||||||
|
</maintainer>
|
||||||
|
</pkgmetadata>
|
Loading…
Reference in new issue