From e54a43db8f4d40473f16b2e95e61c28a2961d5d8 Mon Sep 17 00:00:00 2001 From: Jacob Heider Date: Thu, 18 Apr 2024 19:13:56 -0400 Subject: [PATCH] fix(libexpat) remove *.la --- projects/libexpat.github.io/package.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/projects/libexpat.github.io/package.yml b/projects/libexpat.github.io/package.yml index 589e7640..29d31cfb 100644 --- a/projects/libexpat.github.io/package.yml +++ b/projects/libexpat.github.io/package.yml @@ -6,15 +6,15 @@ versions: github: libexpat/libexpat/releases build: - script: | - ./configure --prefix={{ prefix }} - make --jobs {{ hw.concurrency }} install + - ./configure --prefix={{ prefix }} + - make --jobs {{ hw.concurrency }} install + - run: rm *.la + working-directory: ${{ prefix }}/lib test: - script: | - cc test.c -lexpat -o test - OUTPUT="$(./test)" - test "$OUTPUT" = "tag:str|data:Hello, world!|" + - cc test.c -lexpat -o test + - OUTPUT="$(./test)" + - test "$OUTPUT" = "tag:str|data:Hello, world!|" provides: - bin/xmlwf