You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.4 KiB

  1. #
  2. # Copyright (C) 2018 Yousong Zhou <yszhou4tech@gmail.com>
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=pixman
  9. PKG_VERSION:=0.40.0
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://www.cairographics.org/releases
  13. PKG_HASH:=6d200dec3740d9ec4ec8d1180e25779c00bc749f94278c8b9021f5534db223fc
  14. PKG_MAINTAINER:=Yousong Zhou <yszhou4tech@gmail.com>
  15. PKG_LICENSE:=MIT
  16. PKG_LICENSE_FILES:=COPYING
  17. PKG_INSTALL:=1
  18. include $(INCLUDE_DIR)/package.mk
  19. include $(INCLUDE_DIR)/meson.mk
  20. define Package/pixman
  21. SECTION:=libs
  22. CATEGORY:=Libraries
  23. TITLE:=a low-level software library for pixel manipulation
  24. URL:=http://www.pixman.org/
  25. endef
  26. define Package/pixman/description
  27. Pixman is a low-level software library for pixel manipulation, providing
  28. features such as image compositing and trapezoid rasterization. Important
  29. users of pixman are the cairo graphics library and the X server.
  30. endef
  31. define Package/pixman/install
  32. $(INSTALL_DIR) $(1)/usr/lib
  33. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpixman*.so* $(1)/usr/lib
  34. endef
  35. define Build/InstallDev
  36. $(INSTALL_DIR) $(1)/usr/lib
  37. $(INSTALL_DIR) $(1)/usr/include
  38. $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include
  39. $(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/usr/lib
  40. endef
  41. $(eval $(call BuildPackage,pixman))