diff options
| author | Daniel Danzberger | 2024-11-08 10:48:15 +0000 |
|---|---|---|
| committer | Daniel Danzberger | 2024-11-12 16:27:03 +0000 |
| commit | 0218f1e7ed6d757302402a2bccce5b1fef47bfbe (patch) | |
| tree | 1548987775d1c7f256b14f607805dba92fd586ef | |
| parent | 5578908054a6f4bf2f6f704e87b48bc619e78fa3 (diff) | |
| download | telephony-0218f1e7ed6d757302402a2bccce5b1fef47bfbe.tar.gz | |
rem: Remove library package
All librem features are now part of libre and the only package that
depended on it (baresip) now uses libre.
It can therefore be removed.
Signed-off-by: Daniel Danzberger <dd@embedd.com>
| -rw-r--r-- | libs/rem/Makefile | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/libs/rem/Makefile b/libs/rem/Makefile deleted file mode 100644 index a87a4ce..0000000 --- a/libs/rem/Makefile +++ /dev/null @@ -1,61 +0,0 @@ -# -# Copyright (C) 2010-2017 OpenWrt.org -# Copyright (C) 2010 Alfred E. Heggestad -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# - -include $(TOPDIR)/rules.mk - -PKG_NAME:=rem -PKG_VERSION:=1.0.0 -PKG_RELEASE:=1 - -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=https://codeload.github.com/baresip/rem/tar.gz/v$(PKG_VERSION)? -PKG_HASH:=bcc91bb521fae183357fb422b00a3981477a22e99d3afe165c4ec50a6bbed9da - -PKG_LICENSE:=BSD-3-Clause -PKG_LICENSE_FILES:=docs/COPYING -PKG_MAINTAINER:=Jiri Slachta <jiri@slachta.eu> - -PKG_BUILD_PARALLEL:=1 -PKG_INSTALL:=1 - -include $(INCLUDE_DIR)/package.mk - -define Package/librem - SUBMENU:=Telephony - SECTION:=libs - CATEGORY:=Libraries - DEPENDS:=+libre - TITLE:=Audio and video processing media library - URL:=https://github.com/baresip/rem -endef - -MAKE_FLAGS+= \ - CROSS_COMPILE="$(TARGET_CROSS)" \ - EXTRA_LFLAGS="$(TARGET_LDFLAGS)" \ - LD="$(TARGET_CC)" \ - LIBRE_MK="$(STAGING_DIR)/usr/share/re/re.mk" \ - LIBRE_INC="$(STAGING_DIR)/usr/include/re" \ - LIBRE_SO="$(STAGING_DIR)/usr/lib" \ - OS=linux \ - RELEASE=1 \ - SYSROOT="$(shell $(FIND) $(TOOLCHAIN_DIR) -path '*/include/pthread.h' | sed -ne '1s|/include/pthread.h||p')" \ - SYSROOT_ALT="$(STAGING_DIR)/usr" - -define Build/InstallDev - $(INSTALL_DIR) $(1)/usr/include - $(CP) $(PKG_INSTALL_DIR)/usr/include/rem $(1)/usr/include - $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/librem.{a,so} $(1)/usr/lib -endef - -define Package/librem/install - $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/librem.so $(1)/usr/lib -endef - -$(eval $(call BuildPackage,librem)) |