summaryrefslogtreecommitdiffstats
path: root/libs/libfreefare/Makefile
blob: 1aab78ab2aacd6d8389f02ca2f0f86d1cecb1e67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#
# 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))