blob: aa24e3762ff5c4d350063aeb8b927438f98e9daf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
include $(TOPDIR)/rules.mk
PKG_NAME:=xdg-dbus-proxy
PKG_VERSION:=0.1.8
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=https://github.com/flatpak/$(PKG_NAME)/releases/download/$(PKG_VERSION)
PKG_HASH:=b6630bd24f8161b0e2546d2acbb014a3b3249f5c0d75f2a863ade898b9034d3d
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
PKG_LICENSE:=LGPL-2.1-or-later
PKG_LICENSE_FILES:=COPYING
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/meson.mk
include $(INCLUDE_DIR)/nls.mk
MESON_ARGS += \
-Dinstalled_tests=false \
-Dman=disabled \
-Dtests=false
define Package/xdg-dbus-proxy
SECTION:=utils
CATEGORY:=Utilities
TITLE:=xdg-dbus-proxy
URL:=https://github.com/containers/xdg-dbus-proxy
DEPENDS:=+glib2
endef
define Package/xdg-dbus-proxy/description
xdg-dbus-proxy is a filtering proxy for D-Bus connections.
endef
define Package/xdg-dbus-proxy/install
$(INSTALL_DIR) $(1)/usr/bin
$(CP) $(PKG_INSTALL_DIR)/usr/bin/xdg-dbus-proxy $(1)/usr/bin
endef
$(eval $(call BuildPackage,xdg-dbus-proxy))
|