001060e07a
Signed-off-by: Michel Stempin <michel.stempin@wanadoo.fr> git-svn-id: svn://svn.openwrt.org/openwrt/packages@39663 3c298f89-4303-0410-b956-a3cf2f4a3e73
80 lines
2.1 KiB
Makefile
80 lines
2.1 KiB
Makefile
#
|
|
# Copyright (C) 2010-2012 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libfreefare
|
|
PKG_VERSION:=0.4.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=https://libfreefare.googlecode.com/files/
|
|
PKG_MD5SUM:=98db0c9aea71bda1cdf99dc119987c8c
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/libfreefare/Default
|
|
TITLE:=Library for high level manipulation of MIFARE cards
|
|
URL:=http://code.google.com/p/nfc-tools/wiki/libfreefare
|
|
endef
|
|
|
|
define Package/libfreefare
|
|
$(call Package/libfreefare/Default)
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
DEPENDS:=+libnfc +libopenssl
|
|
endef
|
|
|
|
define Package/libfreefare/description
|
|
The libfreefare project aims to provide a convenient API for MIFARE card
|
|
manipulations.
|
|
endef
|
|
|
|
define Package/libfreefare-examples
|
|
$(call Package/libfreefare/Default)
|
|
TITLE+= (examples)
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
DEPENDS:=+libfreefare
|
|
endef
|
|
|
|
define Package/libfreefare-examples/description
|
|
libfreefare is provided with some examples:
|
|
* mifare-classic-format, mifare-desfire-format: attempt to format Mifare
|
|
cards;
|
|
* mifare-classic-write-ndef, mifare-desfire-write-ndef: write NDEF file to
|
|
Mifare cards;
|
|
* some mifare-desfire-* examples to made various access to Mifare DESFire.
|
|
endef
|
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/freefare.h $(1)/usr/include/
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libfreefare.{a,so*} $(1)/usr/lib/
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libfreefare.pc $(1)/usr/lib/pkgconfig/
|
|
endef
|
|
|
|
define Package/libfreefare/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libfreefare.so.* $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/libfreefare-examples/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/mifare-* $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libfreefare))
|
|
$(eval $(call BuildPackage,libfreefare-examples))
|