File: build

package info (click to toggle)
libassuan 2.5.3-7.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,320 kB
  • sloc: sh: 12,706; ansic: 12,209; makefile: 221
file content (10 lines) | stat: -rwxr-xr-x 168 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

set -e

gcc -pedantic -Wall -Werror -o test-run \
    debian/tests/simple-build.c \
    $(pkg-config --cflags --libs libassuan)

./test-run
rm -f test-run