2018-03-06 19:57:00 +00:00
|
|
|
modules-$(CONFIG_CAIRO) += pixman
|
|
|
|
|
|
|
|
pixman_version := 0.34.0
|
|
|
|
pixman_dir := pixman-$(pixman_version)
|
|
|
|
pixman_tar := pixman-$(pixman_version).tar.gz
|
2024-01-05 02:32:08 +00:00
|
|
|
pixman_url := https://www.cairographics.org/releases/$(pixman_tar)
|
2018-03-06 19:57:00 +00:00
|
|
|
pixman_hash := 21b6b249b51c6800dc9553b65106e1e37d0e25df942c90531d4c3997aa20a88e
|
|
|
|
|
|
|
|
pixman_configure := \
|
|
|
|
$(CROSS_TOOLS) \
|
2023-03-01 16:12:46 +00:00
|
|
|
CFLAGS="-Os" \
|
2018-03-06 19:57:00 +00:00
|
|
|
./configure \
|
2021-07-18 17:34:20 +00:00
|
|
|
--host $(MUSL_ARCH)-elf-linux \
|
2018-03-06 19:57:00 +00:00
|
|
|
--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)
|