File: build-pkgconfig.sh

package info (click to toggle)
popplerkit.framework 0.0.20051227svn-6
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 2,396 kB
  • ctags: 120
  • sloc: objc: 2,303; sh: 914; cpp: 574; ansic: 55; makefile: 24
file content (29 lines) | stat: -rw-r--r-- 360 bytes parent folder | download | duplicates (10)
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
#!/bin/sh

if [ -z "${BUILD_SCRIPTS}" ]; then
   echo "BUILD_SCRIPTS is not set!"
   exit 1
fi

. ${BUILD_SCRIPTS}/build-funcs.sh

build_init $@
if [ $? -ne 0 ]; then
   echo "build_init failed"
   exit 1
fi

cd ${ARTIFACT_DIR}
./configure \
   --prefix=${PREFIX} \
&& \
make \
&&
make install

if [ $? -ne 0 ]; then
   echo "BUILD FAILED"
   exit 1
fi

exit 0