void-packages/srcpkgs/glfw-wayland/template

26 lines
926 B
Bash

# Template file for 'glfw-wayland'
pkgname=glfw-wayland
version=3.3.7
revision=1
wrksrc=glfw-${version}
build_style=cmake
configure_args="-DBUILD_SHARED_LIBS=ON -DGLFW_USE_WAYLAND=ON"
hostmakedepends="extra-cmake-modules pkg-config wayland-devel"
makedepends="MesaLib-devel glu-devel wayland-devel wayland-protocols
libxkbcommon-devel"
short_desc="Multi-platform library for creating windows with OpenGL contexts"
maintainer="q66 <daniel@octaforge.org>"
license="Zlib"
homepage="http://www.glfw.org"
changelog="https://www.glfw.org/changelog.html"
distfiles="https://github.com/glfw/glfw/archive/${version}.tar.gz"
checksum=fd21a5f65bcc0fc3c76e0f8865776e852de09ef6fbc3620e09ce96d2b2807e04
provides="glfw-${version}_${revision}"
replaces="glfw>=0"
do_install() {
vmkdir usr/lib
install -m755 ${wrksrc}/build/src/libglfw.so.${version%.*} ${DESTDIR}/usr/lib/
ln -s libglfw.so.${version%.*} ${DESTDIR}/usr/lib/libglfw.so.3
}