File: test

package info (click to toggle)
usbauth-notifier 1.0.1%2Bgit20190124.b308d5b-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 208 kB
  • sloc: ansic: 382; sh: 42; makefile: 28
file content (15 lines) | stat: -rw-r--r-- 371 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
# autopkgtest check: Build and run a program against glib, to verify that the
# headers and pkg-config file are installed correctly
# Author: Kun-Hung Tsai (蔡昆宏) <moonape1226@gmail.com>

set -e

echo "run: Check if library file exist"
if ldconfig -p | grep libusbauth-configparser
then
    echo "run: Found libary"
else
    echo "run: Fail"
    exit 1
fi