diff options
Diffstat (limited to '')
-rw-r--r-- | dev-libs/libfreefare/libfreefare-0.3.0.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/dev-libs/libfreefare/libfreefare-0.3.0.ebuild b/dev-libs/libfreefare/libfreefare-0.3.0.ebuild new file mode 100644 index 0000000..b07de3a --- /dev/null +++ b/dev-libs/libfreefare/libfreefare-0.3.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="2" + +inherit eutils + +DESCRIPTION="A library for high level manipulation of MIFARE tags" +HOMEPAGE="http://code.google.com/p/nfc-tools/" +SRC_URI="http://nfc-tools.googlecode.com/files/${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~x86 ~amd64" + +CDEPEND=">=dev-libs/libnfc-1.4.0" +RDEPEND="${CDEPEND}" + +src_install() { + emake DESTDIR="${D}" install || die "Install failed" + dodoc README ChangeLog AUTHORS NEWS TODO || die +} |