|
root / base / xrdb / package.toml
package.toml TOML 37 lines 1.4 KB
 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
# xrdb - X server resource database utility
# https://gitlab.freedesktop.org/xorg/app/xrdb
#
# hammerhead-xdm's Xsession/greeter uses xrdb to load
# /usr/local/lib/X11/xdm/Xresources onto the X server's RESOURCE_MANAGER so
# the xlogin greeter picks up the Zygaena teal branding + greeting instead of
# the default white box. See docs/roadmap/DESKTOP_XLIBRE_XDM_GREETER_PLAN.md.
#
# xrdb pipes resource files through a C preprocessor at RUNTIME (not just
# build time). configure's AC_PATH_PROG cpp probe searches
# $PATH:/bin:/usr/bin:/usr/lib:/usr/libexec:/usr/ccs/lib:/usr/ccs/lbin:/lib,
# which would find Hammerhead's /usr/bin/cpp anyway, but build.sh pins
# --with-cpp=/usr/bin/cpp explicitly for a deterministic, host-independent
# result rather than relying on PATH search order.

[package]
name = "xrdb"
version = "1.2.3"
release = 1
description = "X server resource database utility (xdm greeter branding)"
url = "https://xorg.freedesktop.org/releases/individual/app/"
license = "MIT"
maintainer = "Chris Tusa <chris.tusa@leafscale.com>"
arch = "x86_64"

[dependencies]
runtime = ["libX11", "libXmu"]
build = ["libX11", "libXmu", "xorgproto", "util-macros"]

[[source]]
file = "xrdb-1.2.3.tar.xz"
urls = ["https://xorg.freedesktop.org/releases/individual/app/xrdb-1.2.3.tar.xz"]
checksum = "c88f560243278c896ce4fc92ae5a45a2b505a316ffa427fe55b02e5d5914c4e4"

[build]
parallel = true