mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
29 lines
551 B
Bash
29 lines
551 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=7
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="a library for high level manipulation of MIFARE tags"
|
|
HOMEPAGE="https://github.com/nfc-tools/libfreefare"
|
|
SRC_URI="https://github.com/nfc-tools/libfreefare/archive/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE=""
|
|
|
|
DEPEND="dev-libs/libnfc
|
|
dev-libs/openssl:=
|
|
virtual/libusb:0"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}"/"${PN}-${P}"
|
|
|
|
src_prepare() {
|
|
eapply_user
|
|
eautoreconf
|
|
}
|