This removes lines that set PKG_BUILD_DIR when the set value is no different from the default value. Specifically, the line is removed if the assigned value is: * $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION) The default PKG_BUILD_DIR was updated[1] to incorporate BUILD_VARIANT if it is set, so now this is identical to the default value. * $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_SOURCE_SUBDIR) if PKG_SOURCE_SUBDIR is set to $(PKG_NAME)-$(PKG_VERSION), making it the same as the previous case * $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) This is the same as the default PKG_BUILD_DIR when there is no BUILD_VARIANT. * $(BUILD_DIR)/[name]-$(PKG_VERSION) where [name] is a string that is identical to PKG_NAME [1]: https://git.openwrt.org/?p=openwrt/openwrt.git;a=commit;h=e545fac8d968864a965edb9e50c6f90940b0a6c9 Signed-off-by: Jeffery To <jeffery.to@gmail.com>
119 lines
3.1 KiB
Makefile
119 lines
3.1 KiB
Makefile
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libshout
|
|
PKG_VERSION:=2.4.3
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://downloads.us.xiph.org/releases/libshout/
|
|
PKG_HASH:=0d8af55d1141bf90710bcd41a768c9cc5adb251502a0af1dd22c8da215d40dfe
|
|
|
|
PKG_MAINTAINER:=Ted Hess <thess@kitschensync.net>
|
|
PKG_LICENSE:=LGPL-2.0-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
PKG_CPE_ID:=cpe:/a:libshout:libshout
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/libshout/default
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=Shoutcast client library
|
|
URL:=http://www.icecast.org
|
|
DEPENDS:= +libvorbisidec +libpthread
|
|
endef
|
|
|
|
define Package/libshout
|
|
$(call Package/libshout/default)
|
|
TITLE+= (no theora)
|
|
DEPENDS+= +libopenssl
|
|
VARIANT:=notheora
|
|
endef
|
|
|
|
define Package/libshout-nossl
|
|
$(call Package/libshout/default)
|
|
TITLE+= (no ssl/theora)
|
|
VARIANT:=nossl
|
|
endef
|
|
|
|
define Package/libshout-full
|
|
$(call Package/libshout/default)
|
|
TITLE+=(full)
|
|
DEPENDS+= +libtheora +libopenssl
|
|
VARIANT:=full
|
|
endef
|
|
|
|
define Package/libshout/description/default
|
|
libshout allows applications to easily communicate and broadcast
|
|
to an Icecast streaming media server. It handles the socket connections,
|
|
metadata communication, and data streaming for the calling application,
|
|
and lets developers focus on feature sets instead of implementation
|
|
details.
|
|
endef
|
|
|
|
define Package/libshout/description
|
|
$(call Package/libshout/description/default)
|
|
.
|
|
This package does not have Theora support.
|
|
endef
|
|
|
|
define Package/libshout-nossl/description
|
|
$(call Package/libshout/description/default)
|
|
.
|
|
This package does not have OpenSSL or Theora support.
|
|
endef
|
|
|
|
Package/libshout-full/description=$(Package/libshout/description/default)
|
|
|
|
CONFIGURE_ARGS += \
|
|
--enable-shared \
|
|
--enable-static \
|
|
--disable-speex \
|
|
--without-pic
|
|
|
|
ifeq ($(BUILD_VARIANT),notheora)
|
|
CONFIGURE_ARGS += --disable-theora
|
|
endif
|
|
|
|
ifeq ($(BUILD_VARIANT),nossl)
|
|
CONFIGURE_ARGS += --disable-theora --without-openssl
|
|
endif
|
|
|
|
CONFIGURE_VARS += \
|
|
VORBIS_CFLAGS="-I$(STAGING_DIR)/usr/include/tremor/" \
|
|
VORBIS_LIBS="$(TARGET_LDFLAGS) -lvorbisidec" \
|
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
PACKAGE_CONFIG_FILE=shout$(if $(findstring $(BUILD_VARIANT),full),-full).pc
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/shout $(1)/usr/include/
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libshout.{a,so*} $(1)/usr/lib/
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/shout.pc $(1)/usr/lib/pkgconfig/$(PACKAGE_CONFIG_FILE)
|
|
$(SED) 's| -I/usr/include||' $(1)/usr/lib/pkgconfig/$(PACKAGE_CONFIG_FILE)
|
|
endef
|
|
|
|
define Package/libshout/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libshout.so.* $(1)/usr/lib/
|
|
endef
|
|
|
|
Package/libshout-full/install=$(Package/libshout/install)
|
|
Package/libshout-nossl/install=$(Package/libshout/install)
|
|
|
|
$(eval $(call BuildPackage,libshout))
|
|
$(eval $(call BuildPackage,libshout-nossl))
|
|
$(eval $(call BuildPackage,libshout-full))
|