2014-07-25 18:46:03 +00:00
#
2017-12-31 17:05:13 +00:00
# Copyright (C) 2014-2017 OpenWrt.org
2014-07-25 18:46:03 +00:00
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
i n c l u d e $( TOPDIR ) / r u l e s . m k
PKG_NAME := libftdi1
2017-12-31 17:05:13 +00:00
PKG_VERSION := 1.4
2019-09-16 17:44:38 +00:00
PKG_RELEASE := 5
2014-07-25 18:46:03 +00:00
PKG_SOURCE := $( PKG_NAME) -$( PKG_VERSION) .tar.bz2
PKG_SOURCE_URL := http://www.intra2net.com/en/developer/libftdi/download/
2017-12-31 17:05:13 +00:00
PKG_HASH := ec36fb49080f834690c24008328a5ef42d3cf584ef4060f3a35aa4681cb31b74
2014-07-25 18:46:03 +00:00
2019-09-13 02:29:00 +00:00
PKG_MAINTAINER := Álvaro Fernández Rojas <noltari@gmail.com>
PKG_LICENSE := LGPL-2.1-only
2014-07-25 18:46:03 +00:00
PKG_LICENSE_FILES := COPYING.LIB
2019-09-13 02:29:00 +00:00
CMAKE_INSTALL := 1
PKG_BUILD_PARALLEL := 1
2014-08-08 11:11:06 +00:00
PKG_USE_MIPS16 := 0
2014-07-25 18:46:03 +00:00
i n c l u d e $( INCLUDE_DIR ) / p a c k a g e . m k
i n c l u d e $( INCLUDE_DIR ) / c m a k e . m k
d e f i n e P a c k a g e / l i b f t d i 1
SECTION:= libs
CATEGORY:= Libraries
DEPENDS:= +libusb-1.0
TITLE:= Library to talk to FTDI chips
URL:= http://www.intra2net.com/en/developer/libftdi/
e n d e f
d e f i n e P a c k a g e / l i b f t d i 1 / d e s c r i p t i o n
libFTDI - FTDI USB driver with bitbang mode
libFTDI is an open source library to talk to FTDI chips: FT232BM, FT245BM, FT2232C, FT2232H, FT4232H, FT2232D and FT245R, including the popular bitbang mode.
The library is linked with your program in userspace, no kernel driver required.
e n d e f
2015-01-01 19:51:22 +00:00
d e f i n e P a c k a g e / f t d i _ e e p r o m
2015-01-03 15:10:10 +00:00
SECTION:= utils
CATEGORY:= Utilities
2015-01-01 19:51:22 +00:00
DEPENDS:= +confuse +libftdi1
TITLE:= Tool for reading/erasing/flashing FTDI USB chip eeproms
URL:= http://www.intra2net.com/en/developer/libftdi/
e n d e f
d e f i n e P a c k a g e / f t d i _ e e p r o m / d e s c r i p t i o n
ftdi_eeprom is a small tool for reading/erasing/flashing FTDI USB chip
eeproms. It uses libftdi to access the chip, so you will need to have
the required permissions on the device.
2015-01-03 15:10:10 +00:00
The ftdi_sio module should not be loaded.
2015-01-01 19:51:22 +00:00
You have to unplug and replug your device to get the new values to be
read. Otherwise, you will still get the old values.
e n d e f
2019-09-13 02:29:00 +00:00
CMAKE_OPTIONS += \
-DBoost_NO_BOOST_CMAKE= ON \
2019-05-15 21:46:13 +00:00
-DBUILD_TESTS= OFF \
2019-09-13 20:14:48 +00:00
-DEXAMPLES= OFF
2014-07-25 18:46:03 +00:00
2019-09-16 17:44:38 +00:00
d e f i n e B u i l d / I n s t a l l D e v
$( call Build/InstallDev/cmake,$( 1) )
$( SED) 's,/usr/include,$$$${prefix}/include,g' $( 1) /usr/lib/pkgconfig/libftdi1.pc
$( SED) 's,/usr/lib,$$$${prefix}/lib,g' $( 1) /usr/lib/pkgconfig/libftdi1.pc
e n d e f
2014-07-25 18:46:03 +00:00
d e f i n e P a c k a g e / l i b f t d i 1 / i n s t a l l
2015-01-01 19:51:22 +00:00
$( INSTALL_DIR) $( 1) /usr/bin
$( INSTALL_BIN) $( PKG_INSTALL_DIR) /usr/bin/libftdi1-config $( 1) /usr/bin/
2014-07-25 18:46:03 +00:00
$( INSTALL_DIR) $( 1) /usr/lib
$( CP) $( PKG_INSTALL_DIR) /usr/lib/libftdi1.so.* $( 1) /usr/lib/
e n d e f
2015-01-01 19:51:22 +00:00
d e f i n e P a c k a g e / f t d i _ e e p r o m / i n s t a l l
$( INSTALL_DIR) $( 1) /usr/bin
$( INSTALL_BIN) $( PKG_INSTALL_DIR) /usr/bin/ftdi_eeprom $( 1) /usr/bin/
e n d e f
2014-07-25 18:46:03 +00:00
$( eval $ ( call BuildPackage ,libftdi 1) )
2015-01-01 19:51:22 +00:00
$( eval $ ( call BuildPackage ,ftdi_eeprom ) )