Skip to content

Commit

Permalink
fix(libassuan)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhheider committed Nov 6, 2024
1 parent ce71c80 commit b58e1a3
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions projects/gnupg.org/libassuan/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,15 @@ provides:
- bin/libassuan-config

build:
script: |
./configure --prefix={{prefix}}
make
make check
make install
script:
- ./configure --prefix={{prefix}}
- make
- make check
- make install
# .la are unrelocatable, but only used if found
- run: find . -name '*.la' -exec rm {} \;
working-directory: ${{prefix}}/lib

dependencies:
gnupg.org/libgpg-error: 1
env:
Expand All @@ -27,5 +31,4 @@ build:
CFLAGS: $CFLAGS -std=gnu89
CXXFLAGS: '$CXXFLAGS -stdlib=libstdc++ -std=c++03'

test:
script: test "$(libassuan-config --version)" = "{{version}}"
test: test "$(libassuan-config --version)" = "{{version}}"

0 comments on commit b58e1a3

Please sign in to comment.