libgd: update to 2.3.3
[feed/packages.git] / libs / pixman / Makefile
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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=pixman
11 PKG_VERSION:=0.40.0
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=https://www.cairographics.org/releases
16 PKG_HASH:=6d200dec3740d9ec4ec8d1180e25779c00bc749f94278c8b9021f5534db223fc
17
18 PKG_MAINTAINER:=Yousong Zhou <yszhou4tech@gmail.com>
19 PKG_LICENSE:=MIT
20 PKG_LICENSE_FILES:=COPYING
21
22 include $(INCLUDE_DIR)/package.mk
23 include $(INCLUDE_DIR)/meson.mk
24
25 define Package/pixman
26 SECTION:=libs
27 CATEGORY:=Libraries
28 TITLE:=a low-level software library for pixel manipulation
29 URL:=http://www.pixman.org/
30 endef
31
32 define Package/pixman/description
33 Pixman is a low-level software library for pixel manipulation, providing
34 features such as image compositing and trapezoid rasterization. Important
35 users of pixman are the cairo graphics library and the X server.
36 endef
37
38 define Package/pixman/install
39 $(INSTALL_DIR) $(1)/usr/lib
40 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpixman*.so* $(1)/usr/lib
41 endef
42
43 define Build/InstallDev
44 $(INSTALL_DIR) $(1)/usr/lib
45 $(INSTALL_DIR) $(1)/usr/include
46 $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include
47 $(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/usr/lib
48 endef
49
50 $(eval $(call BuildPackage,pixman))