File: jogl-cp-dll.sh

package info (click to toggle)
libjogl2-java 2.3.2%2Bdfsg-9
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 43,876 kB
  • sloc: java: 218,529; ansic: 75,727; xml: 6,703; objc: 3,139; sh: 2,736; cpp: 139; awk: 46; makefile: 29
file content (26 lines) | stat: -rwxr-xr-x 537 bytes parent folder | download | duplicates (6)
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