openwrt-packages/utils/inotify-tools/Makefile

114 lines
3.0 KiB
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=inotify-tools
PKG_VERSION:=4.23.9.0
PKG_HASH:=1dfa33f80b6797ce2f6c01f454fd486d30be4dca1b0c5c2ea9ba3c30a5c39855
PKG_RELEASE:=2
PKG_SOURCE_URL:=https://codeload.github.com/rvoicilas/inotify-tools/tar.gz/$(PKG_VERSION)?
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
PKG_LICENSE:=GPLv2
PKG_LICENSE_FILES:=COPYING
PKG_INSTALL:=1
PKG_FIXUP:=autoreconf
include $(INCLUDE_DIR)/package.mk
CONFIGURE_ARGS+= --disable-doxygen
ifneq ($(CONFIG_USE_MUSL),)
TARGET_CFLAGS += -D_LARGEFILE64_SOURCE
endif
## Avoid linking with libstdcpp
TARGET_CXXFLAGS+= -nodefaultlibs -lc -fno-exceptions
TARGET_LDFLAGS+= $(if $(CONFIG_USE_MUSL),-lssp_nonshared)
define Build/Prepare
$(call Build/Prepare/Default)
$(CP) $(PKG_BUILD_DIR)/README.md $(PKG_BUILD_DIR)/README
endef
define Package/inotify-tools/Default
URL:=https://github.com/rvoicilas/inotify-tools/wiki
endef
define Package/libinotifytools
$(call Package/inotify-tools/Default)
SECTION:=libs
CATEGORY:=Libraries
TITLE=libinotifytools
endef
define Package/inotifywait
$(call Package/inotify-tools/Default)
SECTION:=utils
CATEGORY:=Utilities
DEPENDS:=+libinotifytools
TITLE=inotifywait tool
endef
define Package/inotifywatch
$(call Package/inotify-tools/Default)
SECTION:=utils
CATEGORY:=Utilities
DEPENDS:=+libinotifytools
TITLE=inotifywatch tool
endef
define Package/inotify-tools/description
inotify-tools is a C library and a set of command-line programs for
Linux providing a simple interface to inotify. These programs can be
used to monitor and act upon filesystem events. A more detailed
description of the programs is further down the page. The programs are
written in C and have no dependencies other than a Linux kernel
supporting inotify.
endef
define Package/inotifywait/description
$(call Package/inotify-tools/description)
This package provides the inotifywait tool.
endef
define Package/inotifywatch/description
$(call Package/inotify-tools/description)
This package provides the inotifywatch tool.
endef
define Package/libinotifytools/description
$(call Package/inotify-tools/description)
This package provides the libinotifytools shared library.
endef
define Package/inotifywait/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/inotifywait $(1)/usr/bin/
endef
define Package/inotifywatch/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/inotifywatch $(1)/usr/bin/
endef
define Package/libinotifytools/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so* $(1)/usr/lib/
endef
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include/inotifytools
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/include/inotifytools/* $(1)/usr/include/inotifytools/
$(INSTALL_DIR) $(1)/usr/lib/
$(CP) $(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} $(1)/usr/lib/
endef
$(eval $(call BuildPackage,libinotifytools))
$(eval $(call BuildPackage,inotifywait))
$(eval $(call BuildPackage,inotifywatch))