mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 11:39:25 +00:00
depends: libXau: update to 1.0.12
Some checks are pending
ci/gh-actions/build / build-ubuntu-without-scanner (push) Waiting to run
ci/gh-actions/guix / arm-linux-gnueabihf (push) Blocked by required conditions
ci/gh-actions/guix / codesigning (map[target:x86_64-w64-mingw32]) (push) Blocked by required conditions
ci/gh-actions/guix / cache-sources (push) Waiting to run
ci/gh-actions/guix / aarch64-linux-gnu (push) Blocked by required conditions
ci/gh-actions/guix / arm64-apple-darwin (push) Blocked by required conditions
ci/gh-actions/guix / riscv64-linux-gnu (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-apple-darwin (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-linux-gnu.no-tor-bundle (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-linux-gnu.pack (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-linux-gnu (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-w64-mingw32.installer (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-w64-mingw32 (push) Blocked by required conditions
ci/gh-actions/guix / bundle-logs (push) Blocked by required conditions
ci/gh-actions/guix / codesigning (map[target:x86_64-w64-mingw32.installer]) (push) Blocked by required conditions
Some checks are pending
ci/gh-actions/build / build-ubuntu-without-scanner (push) Waiting to run
ci/gh-actions/guix / arm-linux-gnueabihf (push) Blocked by required conditions
ci/gh-actions/guix / codesigning (map[target:x86_64-w64-mingw32]) (push) Blocked by required conditions
ci/gh-actions/guix / cache-sources (push) Waiting to run
ci/gh-actions/guix / aarch64-linux-gnu (push) Blocked by required conditions
ci/gh-actions/guix / arm64-apple-darwin (push) Blocked by required conditions
ci/gh-actions/guix / riscv64-linux-gnu (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-apple-darwin (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-linux-gnu.no-tor-bundle (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-linux-gnu.pack (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-linux-gnu (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-w64-mingw32.installer (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-w64-mingw32 (push) Blocked by required conditions
ci/gh-actions/guix / bundle-logs (push) Blocked by required conditions
ci/gh-actions/guix / codesigning (map[target:x86_64-w64-mingw32.installer]) (push) Blocked by required conditions
This commit is contained in:
parent
f17c92df84
commit
5a5602e288
2 changed files with 35 additions and 19 deletions
|
@ -1,34 +1,33 @@
|
||||||
package=libXau
|
package=libXau
|
||||||
$(package)_version=1.0.11
|
$(package)_version=1.0.12
|
||||||
$(package)_download_path=https://xorg.freedesktop.org/releases/individual/lib/
|
$(package)_download_path=https://xorg.freedesktop.org/releases/individual/lib/
|
||||||
$(package)_file_name=libXau-$($(package)_version).tar.xz
|
$(package)_file_name=libXau-$($(package)_version).tar.gz
|
||||||
$(package)_sha256_hash=f3fa3282f5570c3f6bd620244438dbfbdd580fc80f02f549587a0f8ab329bbeb
|
$(package)_sha256_hash=2402dd938da4d0a332349ab3d3586606175e19cb32cb9fe013c19f1dc922dcee
|
||||||
$(package)_dependencies=xorgproto
|
$(package)_dependencies=xorgproto
|
||||||
|
$(package)_patches=toolchain.txt
|
||||||
# When updating this package, check the default value of
|
|
||||||
# --disable-xthreads. It is currently enabled.
|
|
||||||
define $(package)_set_vars
|
|
||||||
$(package)_config_opts=--disable-shared --disable-lint-library --without-lint
|
|
||||||
$(package)_config_opts += --disable-dependency-tracking --enable-option-checking
|
|
||||||
$(package)_config_opts += --with-pic
|
|
||||||
endef
|
|
||||||
|
|
||||||
define $(package)_preprocess_cmds
|
define $(package)_preprocess_cmds
|
||||||
cp -f $(BASEDIR)/config.guess $(BASEDIR)/config.sub .
|
rm Makefile.in aclocal.m4 compile config.guess config.h.in config.sub configure depcomp \
|
||||||
|
install-sh ltmain.sh missing test-driver man/Makefile.in && \
|
||||||
|
rm -rf m4 && \
|
||||||
|
cp $($(package)_patch_dir)/toolchain.txt toolchain.txt && \
|
||||||
|
sed -i -e 's|@host_prefix@|$(host_prefix)|' \
|
||||||
|
-e 's|@cc@|$($(package)_cc)|' \
|
||||||
|
-e 's|@cxx@|$($(package)_cxx)|' \
|
||||||
|
-e 's|@ar@|$($(package)_ar)|' \
|
||||||
|
-e 's|@strip@|$(host_STRIP)|' \
|
||||||
|
-e 's|@arch@|$(host_arch)|' \
|
||||||
|
toolchain.txt
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define $(package)_config_cmds
|
define $(package)_config_cmds
|
||||||
$($(package)_autoconf)
|
meson setup --cross-file toolchain.txt build
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define $(package)_build_cmds
|
define $(package)_build_cmds
|
||||||
$(MAKE)
|
ninja -C build
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define $(package)_stage_cmds
|
define $(package)_stage_cmds
|
||||||
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
DESTDIR=$($(package)_staging_dir) ninja -C build install
|
||||||
endef
|
|
||||||
|
|
||||||
define $(package)_postprocess_cmds
|
|
||||||
rm -rf share lib/*.la
|
|
||||||
endef
|
endef
|
||||||
|
|
17
contrib/depends/patches/libXau/toolchain.txt
Normal file
17
contrib/depends/patches/libXau/toolchain.txt
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
[binaries]
|
||||||
|
c = '@cc@'
|
||||||
|
cpp = '@cxx@'
|
||||||
|
ar = '@ar@'
|
||||||
|
strip = '@strip@'
|
||||||
|
pkgconfig = '/home/user/.guix-profile/bin/pkg-config'
|
||||||
|
|
||||||
|
[host_machine]
|
||||||
|
system = 'linux'
|
||||||
|
cpu_family = '@arch@'
|
||||||
|
cpu = '@arch@'
|
||||||
|
endian = 'little'
|
||||||
|
|
||||||
|
[built-in options]
|
||||||
|
default_library = 'static'
|
||||||
|
prefer_static = true
|
||||||
|
prefix = '@host_prefix@'
|
Loading…
Reference in a new issue