File: build

package info (click to toggle)
libfreeaptx 0.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 240 kB
  • sloc: ansic: 1,333; makefile: 71; sh: 23
file content (31 lines) | stat: -rw-r--r-- 682 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh
# autopkgtest check: Build and run a program against libfreeaptx, to verify that
# the headers and pkg-config file are installed correctly

set -e

if [ -n "${DEB_HOST_GNU_TYPE:-}" ]; then
    CROSS_COMPILE="$DEB_HOST_GNU_TYPE-"
else
    CROSS_COMPILE=
fi

cat <<EOF > libfreeaptx_test.c
#include "freeaptx.h"

int main(void)
{
  struct aptx_context *dec;
  dec = aptx_init(0);
  return 0;
}
EOF

# deliberately word-splitting pkg-config output:
# shellcheck disable=SC2046
"${CROSS_COMPILE}gcc" -o libfreeaptx_test libfreeaptx_test.c \
$("${CROSS_COMPILE}pkg-config" --cflags --libs libfreeaptx)
echo "build: OK"
[ -x libfreeaptx_test ]
./libfreeaptx_test
echo "run: OK"