4e817fa2b5a370a06c8873978515f7edfdc4973b
[packages.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.19
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:=e6e25f33b4327b1b7aa1156947da45f3
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/libftdi
23   SECTION:=libs
24   CATEGORY:=Libraries
25   DEPENDS:=+libusb
26   TITLE:=library to talk to FTDI chips
27   URL:=http://www.intra2net.com/en/developer/libftdi/
28 endef
29
30 define Package/libftdi/description
31   libFTDI - FTDI USB driver with bitbang mode
32   libFTDI is an open source library to talk to FTDI chips: FT232BM, FT245BM, FT2232C, FT2232H, FT4232H, FT2232D and FT245R, including the popular bitbang mode. 
33   The library is linked with your program in userspace, no kernel driver required.
34 endef
35
36 define Build/InstallDev
37         $(INSTALL_DIR) $(1)/usr/include/
38         $(CP) $(PKG_INSTALL_DIR)/usr/include/ftdi.h $(1)/usr/include/
39         $(INSTALL_DIR) $(1)/usr/lib
40         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libftdi.{a,so} $(1)/usr/lib/
41         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libftdi.so* $(1)/usr/lib/
42 endef
43
44 define Package/libftdi/install
45         $(INSTALL_DIR) $(1)/usr/lib
46         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libftdi.so.* $(1)/usr/lib/
47 endef
48
49 $(eval $(call BuildPackage,libftdi))