mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-01-16 21:23:28 +01:00
25 lines
546 B
Bash
25 lines
546 B
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
DESCRIPTION="command line rfid interface"
|
|
HOMEPAGE="http://www.bindshell.net/tools/rfidtool"
|
|
SRC_URI="https://pkgbuild.com/~giovanni/$PN-v$PV.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND=""
|
|
|
|
S="${WORKDIR}"/$PN-v$PV
|
|
|
|
src_compile() {
|
|
gcc $CFLAGS main.c rfid.c -o rfidtool || die "compile failed"
|
|
}
|
|
|
|
src_install() {
|
|
dobin rfidtool || die "install failed"
|
|
dodoc README || die "doc install failed"
|
|
}
|