shithub: libtags

Download patch

ref: 0f97547851c6eca1582494ffb1817fc25bd100de
parent: 92b806c9c3f5b3a201c373299835953605a2a2a3
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Sat Mar 2 13:31:42 EST 2024

meson: define what gets installed

--- a/meson.build
+++ b/meson.build
@@ -44,8 +44,13 @@
 lib = static_library(
 	'libtags',
 	sources: src_lib,
+	install: true,
 )
 
+install_headers(
+	'tags.h',
+)
+
 libtags = declare_dependency(
 	link_with: lib,
 )
@@ -54,4 +59,5 @@
 	'readtags',
 	sources: src_readtags,
 	dependencies: [ libtags ],
+	install: false,
 )