File: ags-integration-unit-test

package info (click to toggle)
gsequencer 8.2.9-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 74,272 kB
  • sloc: ansic: 1,195,333; xml: 31,048; cpp: 9,749; sh: 5,798; makefile: 4,024; perl: 536; sed: 16; python: 11
file content (16 lines) | stat: -rw-r--r-- 465 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
set -e

dpkg-source --before-build `pwd`
dpkg-buildpackage -rfakeroot --target=pre-integration-test
export HOST=$(dpkg-architecture -qDEB_HOST_MULTIARCH)

if [ -d "/usr/lib/gsequencer" ]
then
    export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}/usr/lib/gsequencer
elif [ -d "/usr/lib/$HOST/gsequencer" ]
then
    export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}/usr/lib/$HOST/gsequencer
fi

make ags-parallel-integration-unit-test