From 7ba09f43c6122468d4a38b33e39b9a2bb26eb063 Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Thu, 27 Jul 2023 10:25:31 -0700 Subject: [PATCH] expat: split libraries from main package Most programs using expat do not require the xmlwf utility, as they just use libexpat directly. Signed-off-by: Ariadne Conill --- expat.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/expat.yaml b/expat.yaml index b98b34856321..efc2d5a4cab9 100644 --- a/expat.yaml +++ b/expat.yaml @@ -1,7 +1,7 @@ package: name: expat version: 2.5.0 - epoch: 3 + epoch: 4 description: "XML SAX Parser library written in C" copyright: - license: MIT @@ -44,9 +44,13 @@ subpackages: description: "expat headers" pipeline: - uses: split/dev - dependencies: - runtime: - - expat + + - name: "libexpat1" + description: "libexpat shared library" + pipeline: + - runs: | + mkdir -p "${{targets.subpkgdir}}"/usr + mv "${{targets.destdir}}"/usr/lib "${{targets.subpkgdir}}"/usr/ update: enabled: true