From a544658ffc92fdfada9ce8faf62dac52af1ead62 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Fri, 31 May 2019 17:25:54 -0700 Subject: [PATCH] libevhtp: Remove random hacks There's no point in overriding the defaults. They work fine. Signed-off-by: Rosen Penev --- libs/libevhtp/Makefile | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/libs/libevhtp/Makefile b/libs/libevhtp/Makefile index 07668fd8b..ee1b02d20 100644 --- a/libs/libevhtp/Makefile +++ b/libs/libevhtp/Makefile @@ -12,7 +12,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libevhtp PKG_VERSION:=1.2.18 -PKG_RELEASE:=1 +PKG_RELEASE:=2 # This package is building a static library, used by seafile-server # Every time the built library changes (metadata changes are exempt), # seafile-server needs a release bump to ensure the update is used. @@ -25,11 +25,7 @@ PKG_MAINTAINER:=Eneas U de Queiroz PKG_LICENSE:=BSD-3-Clause PKG_LICENSE_FILES:=LICENSE -TARGET_CFLAGS += $(TARGET_CPPFLAGS) CMAKE_INSTALL:=1 -CMAKE_OPTIONS += \ - -DLIB_INSTALL_DIR="$(STAGING_DIR)/usr/lib" \ - -DINCLUDE_INSTALL_DIR="$(STAGING_DIR)/usr/include" include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/cmake.mk @@ -48,10 +44,9 @@ define Package/libevhtp/description meaning the developer never thought of it being used for creating a full-fledged HTTP service. endef -define Package/InstallDev - $(INSTALL_DIR) $(1)/usr/{lib,include} - $(CP) $(PKG_INSTALL_DIR)/usr/include/. $(1)/usr/include/ - $(CP) $(PKG_INSTALL_DIR)/usr/lib/. $(1)/usr/lib/ +define Build/InstallDev + $(call Build/InstallDev/cmake,$(1)) + $(SED) 's,^\(include\|lib\)dir=,\0$(STAGING_DIR)/usr/\1,' "$(1)/usr/lib/pkgconfig/evhtp.pc" endef $(eval $(call BuildPackage,libevhtp))