Files
video/libs/seatd/Makefile
Daniel Golle bed571414a seatd: import upstream patch to fix build for PowerPC
Backport patch merged upstream
d571092855

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2024-12-08 12:40:08 +00:00

78 lines
1.8 KiB
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=seatd
PKG_VERSION:=0.9.1
PKG_RELEASE:=2
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://git.sr.ht/~kennylevinsen/seatd
PKG_SOURCE_VERSION:=$(PKG_VERSION)
PKG_MIRROR_HASH:=bf572e248ba9f4bd7808b3fdfad04719f72bf2d1702d4c3bb503a0688f341936
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
PKG_LICENSE:=MIT
PKG_INSTALL:=1
PKG_BUILD_DEPENDS:=wayland/host
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/meson.mk
define Package/libseat
SECTION:=libs
CATEGORY:=Libraries
SUBMENU:=Video
TITLE:=libseat
URL:=https://git.sr.ht/~kennylevinsen/seatd
endef
define Package/libseat/description
A universal seat management library.
endef
define Package/seatd
SECTION:=libs
CATEGORY:=Libraries
SUBMENU:=Video
TITLE:=seatd
URL:=https://git.sr.ht/~kennylevinsen/seatd
DEPENDS:=+libseat
endef
define Package/seatd/description
A minimal seat management daemon.
endef
MESON_ARGS += \
-Dlibseat-logind=disabled \
-Dlibseat-seatd=enabled \
-Dlibseat-builtin=disabled \
-Dserver=enabled \
-Dexamples=disabled \
-Dman-pages=disabled \
-Ddefaultpath="/tmp/run/seatd.sock"
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include
$(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*.so* $(1)/usr/lib/
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/*.pc $(1)/usr/lib/pkgconfig
endef
define Package/libseat/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*.so.* $(1)/usr/lib/
endef
define Package/seatd/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/seatd $(1)/usr/bin/
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/seatd.init $(1)/etc/init.d/seatd
endef
$(eval $(call BuildPackage,libseat))
$(eval $(call BuildPackage,seatd))