diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2021-11-14 03:24:47 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2021-11-14 03:24:47 +0100 |
commit | b1c3b3703dab3635af772b7476bb185d87066f88 (patch) | |
tree | c2d800736aa49890ba34accec447ee962723b56c /package/libxcvt | |
parent | 3830a492c7fdfd00c2eda30f5f4482543d664351 (diff) |
xorg-server: update to latest
modesetting driver is included. Tested with Qemu -std vga.
Diffstat (limited to 'package/libxcvt')
-rw-r--r-- | package/libxcvt/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/package/libxcvt/Makefile b/package/libxcvt/Makefile new file mode 100644 index 000000000..952b7c7e7 --- /dev/null +++ b/package/libxcvt/Makefile @@ -0,0 +1,30 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(ADK_TOPDIR)/rules.mk + +PKG_NAME:= libxcvt +PKG_VERSION:= 0.1.1 +PKG_RELEASE:= 1 +PKG_HASH:= 27ebce180d355f94c1992930bedb40a36f6d7312ee50bf7f0acbcd22f33e8c29 +PKG_DESCR:= xcvt library +PKG_SECTION:= libs/misc +PKG_SITES:= https://www.x.org/releases/individual/lib/ +PKG_OPTS:= dev + +include $(ADK_TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,LIBXCVT,libxcvt,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS))) + +WRKBUILD= $(WRKDIR)/$(PKG_NAME)-obj + +CONFIG_STYLE:= meson +BUILD_STYLE:= meson +INSTALL_STYLE:= meson + +libxcvt-install: + $(INSTALL_DIR) $(IDIR_LIBXCVT)/usr/lib + $(CP) $(WRKINST)/usr/lib/libxcvt*.so* \ + $(IDIR_LIBXCVT)/usr/lib + +include $(ADK_TOPDIR)/mk/pkg-bottom.mk |