diff options
author | BlackNoxis <steven.darklight@gmail.com> | 2014-10-27 18:38:05 +0200 |
---|---|---|
committer | BlackNoxis <steven.darklight@gmail.com> | 2014-10-27 18:38:05 +0200 |
commit | 24934e623441310f644e5f72855b0f2bf9f3cd1a (patch) | |
tree | a453939bf58199bc2c3ff27bcf0accf2b221c6c4 /net-wireless/rfidtool/rfidtool-0.01.ebuild | |
parent | 687f45092b4f4ccf33765cee7427f054bae22344 (diff) |
Incoming! Moving Rogento.git to kogaion-desktop. Finally
Diffstat (limited to 'net-wireless/rfidtool/rfidtool-0.01.ebuild')
-rw-r--r-- | net-wireless/rfidtool/rfidtool-0.01.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/net-wireless/rfidtool/rfidtool-0.01.ebuild b/net-wireless/rfidtool/rfidtool-0.01.ebuild new file mode 100644 index 00000000..ce66d2fe --- /dev/null +++ b/net-wireless/rfidtool/rfidtool-0.01.ebuild @@ -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 ~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" +} |