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.

55 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_FIXUP:=autoreconf
  18. PKG_INSTALL:=1
  19. PKG_BUILD_DEPENDS:=meson/host
  20. include $(INCLUDE_DIR)/package.mk
  21. include ../../devel/meson/meson.mk
  22. define Package/pixman
  23. SECTION:=libs
  24. CATEGORY:=Libraries
  25. TITLE:=a low-level software library for pixel manipulation
  26. URL:=http://www.pixman.org/
  27. endef
  28. define Package/pixman/description
  29. Pixman is a low-level software library for pixel manipulation, providing
  30. features such as image compositing and trapezoid rasterization. Important
  31. users of pixman are the cairo graphics library and the X server.
  32. endef
  33. define Package/pixman/install
  34. $(INSTALL_DIR) $(1)/usr/lib
  35. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpixman*.so* $(1)/usr/lib
  36. endef
  37. define Build/InstallDev
  38. $(INSTALL_DIR) $(1)/usr/lib
  39. $(INSTALL_DIR) $(1)/usr/include
  40. $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include
  41. $(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/usr/lib
  42. endef
  43. $(eval $(call BuildPackage,pixman))