2014-07-17 20:52:21 +00:00
|
|
|
#
|
2014-07-17 17:21:17 +00:00
|
|
|
# Copyright (C) 2008-2014 OpenWrt.org
|
2014-07-17 20:52:21 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=libogg
|
2021-06-16 02:04:40 +00:00
|
|
|
PKG_VERSION:=1.3.5
|
treewide: remove AUTORELEASE
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.
The following temporary change was made to the core:
diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))
COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))
all:
FORCE: ;
And this command used to fix affected packages:
for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
make package/$i/download
done
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2023-04-21 16:32:27 +00:00
|
|
|
PKG_RELEASE:=1
|
2014-07-17 20:52:21 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
2018-06-07 23:45:30 +00:00
|
|
|
PKG_SOURCE_URL:=https://downloads.xiph.org/releases/ogg/
|
2021-06-16 02:04:40 +00:00
|
|
|
PKG_HASH:=c4d91be36fc8e54deae7575241e03f4211eb102afb3fc0775fbbc1b740016705
|
2014-07-17 20:52:21 +00:00
|
|
|
|
2019-09-12 19:40:05 +00:00
|
|
|
PKG_MAINTAINER:=Ted Hess <thess@kitschensync.net>
|
2014-08-02 08:53:00 +00:00
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
2014-07-17 20:52:21 +00:00
|
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
PKG_INSTALL:=1
|
2019-09-12 19:40:05 +00:00
|
|
|
PKG_BUILD_PARALLEL:=1
|
2014-07-17 20:52:21 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/libogg
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=libogg
|
2019-09-12 19:40:05 +00:00
|
|
|
URL:=https://xiph.org/ogg/
|
|
|
|
ABI_VERSION:=0
|
2014-07-17 20:52:21 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libogg/description
|
|
|
|
Ogg project codecs use the Ogg bitstream format to arrange the raw,
|
|
|
|
compressed bitstream into a more robust, useful form. For example,
|
|
|
|
the Ogg bitstream makes seeking, time stamping and error recovery
|
|
|
|
possible, as well as mixing several sepearate, concurrent media
|
|
|
|
streams into a single physical bitstream.
|
|
|
|
endef
|
|
|
|
|
2019-09-12 19:40:05 +00:00
|
|
|
TARGET_LDFLAGS += -Wl,--gc-sections,--as-needed
|
|
|
|
|
2014-07-17 20:52:21 +00:00
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include/ogg/
|
|
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/include/ogg/* $(1)/usr/include/ogg/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} $(1)/usr/lib/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig/
|
|
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* $(1)/usr/lib/pkgconfig/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/share/aclocal/
|
|
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/aclocal/* $(1)/usr/share/aclocal/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libogg/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/
|
2019-09-12 19:40:05 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libogg.so.* $(1)/usr/lib/
|
2014-07-17 20:52:21 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,libogg))
|