File: install

package info (click to toggle)
libwww-search-perl 2.51.80-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,748 kB
  • sloc: perl: 10,997; sh: 127; makefile: 16
file content (45 lines) | stat: -rwxr-xr-x 630 bytes parent folder | download | duplicates (8)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/sh

TDIR=COMPONENTS/${DH_COMPONENT}
DESTDIR=debian/

if [ -z ${PACKAGE} ]
then
    echo PACKAGE not set
    exit 1
fi
PERL=$(which perl)
PERL="${PERL} -I../../debian/${PACKAGE}/usr/share/perl5"

if [ -z ${DH_COMPONENT} ]
then
    echo DH_COMPONENT not set
    exit 1
fi

if [ ! -d ${TDIR} ]
then
    echo ${TDIR} not a directory
    exit 1
fi

if dh_auto_install -D ${TDIR}
then
    EXIT_STATUS=0
else
    EXIT_STATUS=1
fi

if [ -e ${DH_COMPONENT}/ChangeLog ]
then
  if dh_install ${TDIR}/ChangeLog usr/share/doc/${PACKAGE}/${DH_COMPONENT}
  then
      EXIT_STATUS=0
  else
      EXIT_STATUS=1
  fi
fi

exit $EXIT_STATUS