summaryrefslogtreecommitdiff
path: root/openwrt/package/libpcap/Makefile
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2006-06-18 18:30:40 +0000
committerNicolas Thill <nico@openwrt.org>2006-06-18 18:30:40 +0000
commitb65701e8874616ebcdcf7dfa4883a034c52eaf93 (patch)
tree5ef5c474dddaad4f57a06a1d4311a0ccf56f6b3a /openwrt/package/libpcap/Makefile
parentf24397711b6a1c2605939b8349dfbe6ab3ea64aa (diff)
downloadmtk-20170518-b65701e8874616ebcdcf7dfa4883a034c52eaf93.zip
mtk-20170518-b65701e8874616ebcdcf7dfa4883a034c52eaf93.tar.gz
mtk-20170518-b65701e8874616ebcdcf7dfa4883a034c52eaf93.tar.bz2
normalize Makefiles.
SVN-Revision: 3998
Diffstat (limited to 'openwrt/package/libpcap/Makefile')
-rw-r--r--openwrt/package/libpcap/Makefile34
1 files changed, 14 insertions, 20 deletions
diff --git a/openwrt/package/libpcap/Makefile b/openwrt/package/libpcap/Makefile
index 960caf1..d4d7e21 100644
--- a/openwrt/package/libpcap/Makefile
+++ b/openwrt/package/libpcap/Makefile
@@ -17,11 +17,11 @@ PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
include $(TOPDIR)/package/rules.mk
define Package/libpcap
- SECTION:=base
- CATEGORY:=Libraries
- TITLE:=Low-level packet capture library
- DESCRIPTION:=A system-independent library for user-level network packet capture.
- URL:=http://www.tcpdump.org/
+SECTION:=base
+CATEGORY:=Libraries
+TITLE:=Low-level packet capture library
+DESCRIPTION:=A system-independent library for user-level network packet capture.
+URL:=http://www.tcpdump.org/
endef
define Build/Configure
@@ -69,29 +69,23 @@ define Build/Compile
all install
endef
-define Package/libpcap/install
- install -m0755 -d $(1)/usr/lib
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcap.so.* $(1)/usr/lib/
-endef
-
define Build/InstallDev
mkdir -p $(STAGING_DIR)/usr/include
- $(CP) $(PKG_INSTALL_DIR)/usr/include/pcap.h \
- $(PKG_INSTALL_DIR)/usr/include/pcap-bpf.h \
- $(PKG_INSTALL_DIR)/usr/include/pcap-namedb.h \
+ $(CP) $(PKG_INSTALL_DIR)/usr/include/pcap{,-bpf,-namedb}.h \
$(STAGING_DIR)/usr/include/
mkdir -p $(STAGING_DIR)/usr/lib
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcap.a \
- $(PKG_INSTALL_DIR)/usr/lib/libpcap.so* \
+ $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcap.{a,so*} \
$(STAGING_DIR)/usr/lib/
endef
define Build/UninstallDev
- rm -rf $(STAGING_DIR)/usr/include/pcap.h \
- $(STAGING_DIR)/usr/include/pcap-bpf.h \
- $(STAGING_DIR)/usr/include/pcap-namedb.h \
- $(STAGING_DIR)/usr/lib/libpcap.a \
- $(STAGING_DIR)/usr/lib/libpcap.so*
+ rm -rf $(STAGING_DIR)/usr/include/pcap{,-bpf,-named}.h \
+ $(STAGING_DIR)/usr/lib/libpcap.{a,so*}
+endef
+
+define Package/libpcap/install
+ install -m0755 -d $(1)/usr/lib
+ $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcap.so.* $(1)/usr/lib/
endef
$(eval $(call BuildPackage,libpcap))