mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-18 20:47:55 +00:00
f16e92792a
This prepares most of the modules to be build for it. Signed-off-by: Sergii Dmytruk <sergii.dmytruk@3mdeb.com>
25 lines
590 B
Makefile
25 lines
590 B
Makefile
modules-$(CONFIG_CAIRO) += pixman
|
|
|
|
pixman_version := 0.34.0
|
|
pixman_dir := pixman-$(pixman_version)
|
|
pixman_tar := pixman-$(pixman_version).tar.gz
|
|
pixman_url := https://www.cairographics.org/releases/$(pixman_tar)
|
|
pixman_hash := 21b6b249b51c6800dc9553b65106e1e37d0e25df942c90531d4c3997aa20a88e
|
|
|
|
pixman_configure := \
|
|
$(CROSS_TOOLS) \
|
|
./configure \
|
|
--host $(MUSL_ARCH)-elf-linux \
|
|
--prefix="/" \
|
|
--disable-gtk
|
|
|
|
pixman_target := \
|
|
$(MAKE_JOBS) \
|
|
$(CROSS_TOOLS) \
|
|
DESTDIR="$(INSTALL)" \
|
|
install \
|
|
|
|
pixman_libraries := pixman/.libs/libpixman-1.so.0
|
|
|
|
pixman_depends := libpng $(musl_dep)
|