Browse Source

Merge pull request #9744 from PolynomialDivision/feature/add_radiotap

libradiotap: add radiotap parsing library
lilik-openwrt-22.03
Rosen Penev 5 years ago
committed by GitHub
parent
commit
14587390ce
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 50 additions and 0 deletions
  1. +50
    -0
      libs/libradiotap/Makefile

+ 50
- 0
libs/libradiotap/Makefile View File

@ -0,0 +1,50 @@
#
# Copyright (C) 2016 Bruno Randolf (br1@einfach.org)
# 2019 Nick Hainke (vincent@systemli.org)
#
include $(TOPDIR)/rules.mk
PKG_NAME:=libradiotap
PKG_VERSION:=2019-04-15
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/radiotap/radiotap-library.git
PKG_SOURCE_VERSION:=1ca6b4f0d7225971ebcadf575c8f9e00ee55e840
PKG_MIRROR_HASH:=59d2350d569c4027ca1b23ebbe3519852e194184c1aaa04308712235f387e422
PKG_MAINTAINER:=Nick Hainke <vincent@systemli.org>
PKG_LICENSE:=ISC
PKG_LICENSE_FILES:=COPYING
PKG_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/cmake.mk
define Package/libradiotap
SECTION:=libs
CATEGORY:=Libraries
TITLE:=Radiotap Parser Library
URL:=https://www.radiotap.org/
endef
define Package/libradiotap/description
Library that supplies additional information about frames from the driver to userspace applications.
endef
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include
$(CP) $(PKG_INSTALL_DIR)/usr/include/radiotap* $(1)/usr/include/
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libradiotap.so* $(1)/usr/lib/
endef
define Package/libradiotap/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libradiotap.so* $(1)/usr/lib/
endef
$(eval $(call BuildPackage,libradiotap))

Loading…
Cancel
Save