blob: 1ed6c8d5364cee4e864e67c98f6c0166b11a8479 (
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
|
#
# Copyright (C) 2006-2009 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:=librtk-inband
PKG_VERSION:=0.1
PKG_RELEASE:=2
include $(INCLUDE_DIR)/package.mk
define Package/librtk-inband
SECTION:=libs
CATEGORY:=Libraries
TITLE:=realtek wireless device in-band configuration library
endef
define Package/librtk-inband/description
realtek wireless device in-band configuration library
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
$(CP) ./src/* $(PKG_BUILD_DIR)/
endef
TARGET_CFLAGS += $(FPIC)
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
$(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS)" \
all
endef
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig $(1)/usr/include/
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig $(1)/usr/include/librtk-inband
$(CP) $(PKG_BUILD_DIR)/include/* $(1)/usr/include/
$(CP) $(PKG_BUILD_DIR)/ioh.h $(1)/usr/include/librtk-inband
$(CP) $(PKG_BUILD_DIR)/librtk-inband.so $(1)/usr/lib/
$(CP) ./files/librtk-inband.pc $(1)/usr/lib/pkgconfig
endef
define Package/librtk-inband/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_BUILD_DIR)/librtk-inband.so $(1)/usr/lib/
endef
$(eval $(call BuildPackage,librtk-inband))
|