mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-08 20:43:38 +02:00
added rfidtool
This commit is contained in:
parent
80e23645a6
commit
3f53dbe131
2 changed files with 28 additions and 0 deletions
2
net-wireless/rfidtool/Manifest
Normal file
2
net-wireless/rfidtool/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST rfidtool-v0.01.tar.bz2 10125 RMD160 39ab91605c3438b276a8999a7a7ef3dbae5e5544 SHA1 c60185355c6f42972aff86662c4be55a91b97dd6 SHA256 e7e61aa434634121323d0a02435c09b37e0bddab9dd517d4fdfeb1fcb018e5f7
|
||||
EBUILD rfidtool-0.01.ebuild 563 RMD160 b22c856196d2a0ee07a3b1a64d115fd6fa21c0c4 SHA1 1ead9ee534a22d5ad96a895d231120cdb7c8745b SHA256 99b136daed87ff3d7968fe17339d0d5a6539593f1e116a3b1057745eba364911
|
||||
26
net-wireless/rfidtool/rfidtool-0.01.ebuild
Normal file
26
net-wireless/rfidtool/rfidtool-0.01.ebuild
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
DESCRIPTION="command line rfid interface"
|
||||
HOMEPAGE="http://www.bindshell.net/tools/rfidtool"
|
||||
SRC_URI="http://www.bindshell.net/tools/rfidtool/$PN-v$PV.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
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"
|
||||
}
|
||||
Loading…
Reference in a new issue