File: jogl-cp-dll.sh

package info (click to toggle)
libjogl2-java 2.6.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 57,484 kB
  • sloc: java: 257,713; ansic: 86,782; xml: 7,914; objc: 4,880; sh: 3,033; cpp: 139; makefile: 50; awk: 46; perl: 27
file content (26 lines) | stat: -rwxr-xr-x 537 bytes parent folder | download | duplicates (7)
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
#! /bin/sh

jogamproot=$1
shift

builddir=$1
shift

destination=$1
shift


if [ -z "$jogamproot" -o -z "$builddir" -o -z "$destination" ] ; then
    echo Usage $0 jogamp_root builddir destination
    echo e.g. $0 JOGL build-win32 /cygdrive/y/jogl/lib-jogl-win32/
    exit
fi

cp -v \
  $jogamproot/jogl/$builddir/jar/*natives* \
  $jogamproot/gluegen/$builddir/obj/*.dll \
  $jogamproot/jogl/$builddir/nativewindow/obj/*.dll \
  $jogamproot/jogl/$builddir/jogl/obj/*.dll \
  $jogamproot/jogl/$builddir/newt/obj/*.dll \
    $destination