[libftdi]
[openwrt/svn-archive/archive.git] / libs / libftdi / Makefile
1 #
2 # Copyright (C) 2011 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=libftdi
11 PKG_VERSION:=0.18
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://www.intra2net.com/en/developer/libftdi/download/
16 PKG_MD5SUM:=916f65fa68d154621fc0cf1f405f2726
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/libftdi
23 SECTION:=libs
24 CATEGORY:=Libraries
25 TITLE:=library to talk to FTDI chips
26 URL:=http://www.intra2net.com/en/developer/libftdi/
27 endef
28
29 define Package/libftdi/description
30 libFTDI - FTDI USB driver with bitbang mode
31 libFTDI is an open source library to talk to FTDI chips: FT232BM, FT245BM, FT2232C, FT2232H, FT4232H, FT2232D and FT245R, including the popular bitbang mode.
32 The library is linked with your program in userspace, no kernel driver required.
33 endef
34
35 define Build/InstallDev
36 $(INSTALL_DIR) $(1)/usr/include/
37 $(CP) $(PKG_INSTALL_DIR)/usr/include/ftdi.h $(1)/usr/include/
38 $(INSTALL_DIR) $(1)/usr/lib
39 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libftdi.{a,so} $(1)/usr/lib/
40 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libftdi.so* $(1)/usr/lib/
41 endef
42
43 define Package/libftdi/install
44 $(INSTALL_DIR) $(1)/usr/lib
45 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libftdi.so.* $(1)/usr/lib/
46 endef
47
48 $(eval $(call BuildPackage,libftdi))