mirror of
https://github.com/openwrt/packages.git
synced 2025-12-10 12:41:22 +00:00
Bump rtpmidid to version 24.12. The new release fix support for CMake >= 4.0 version and permit to drop all patch (everything is upstream) Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
49 lines
1.4 KiB
Makefile
49 lines
1.4 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=rtpmidid
|
|
PKG_VERSION:=24.12
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/davidmoreno/rtpmidid
|
|
PKG_SOURCE_VERSION:=v$(PKG_VERSION)
|
|
PKG_MIRROR_HASH:=f302061c147833d6c5fe06aa0f8220185e6a29e4840355f26be231c618bc3334
|
|
|
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
|
PKG_LICENSE:=GPL-3.0-or-later LGPL-2.1-or-later
|
|
PKG_LICENSE_FILES:=LICENSE.md LICENSE-lib.txt LICENSE-daemon.txt
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
# There seems to be problem with c++20 str format and constexpr.
|
|
# Force c++17 and libfmt and re-evaluate at the next release.
|
|
CMAKE_OPTIONS += \
|
|
-DCPP_VERSION=17 \
|
|
-DUSE_FMT=ON
|
|
|
|
define Package/rtpmidid
|
|
SECTION:=sound
|
|
CATEGORY:=Sound
|
|
TITLE:=RTP MIDI User Space Driver Daemon for Linux
|
|
URL:=https://github.com/davidmoreno/rtpmidid/
|
|
DEPENDS:=+alsa-lib +libavahi-client +libfmt
|
|
endef
|
|
|
|
define Package/rtpmidid/description
|
|
rtpmidid is an user daemon, and when a RTP MIDI device is announced
|
|
using mDNS (also known as Zeroconf, Avahi, and multicast DNS) it
|
|
exposes this ALSA sequencer port.
|
|
endef
|
|
|
|
define Build/Install
|
|
endef
|
|
|
|
define Package/rtpmidid/install
|
|
$(INSTALL_DIR) $(1)/usr/bin $(1)/etc/init.d
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/rtpmidid $(1)/usr/bin/
|
|
$(INSTALL_BIN) ./files/rtpmidid.init $(1)/etc/init.d/rtpmidid
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,rtpmidid))
|