code stringlengths 1 1.96M | language stringclasses 1
value |
|---|---|
#!/bin/sh
#
# view argb8888
#
# Modified:
# Kyan He <kyan.ql.he@gmail.com> @ Tue Feb 15 01:45:54 CST 2011
#
# Initial version
# Kyan He <kyan.ql.he@gmail.com> @ Mon Sep 20 11:45:54 CST 2010
#
if ! which ffmpeg >/dev/null;
then
echo "no ffmpeg found"
elif [[ ! $# -eq 2 ]];
then
echo "Usage: `basename $0` <data... | Shell |
#!/bin/bash
# check-layouts: Determine if any layout files are unused in an Android project
# Copyright 2011 Steven Adams adamsmanor@gmail.com http://adamsmanor.net
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a c... | Shell |
#!/bin/bash
# check-drawables: Determine if any drawable files are unused in an Android project
# Copyright 2011 Steven Adams adamsmanor@gmail.com http://adamsmanor.net
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain... | Shell |
#!/bin/bash
# check-layouts: Determine if any layout files are unused in an Android project
# Copyright 2011 Steven Adams adamsmanor@gmail.com http://adamsmanor.net
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a c... | Shell |
#!/bin/bash
# check-drawables: Determine if any drawable files are unused in an Android project
# Copyright 2011 Steven Adams adamsmanor@gmail.com http://adamsmanor.net
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain... | Shell |
#!/bin/sh
scp -q res/values/strings.xml linode:ath/incoming/en.xml
wget --quiet -O /dev/null --ignore-length --post-data="" http://ath.darshancomputing.com/bi/load_new_en
if [ "$?" -ne "0" ]; then
echo "Sorry, something didn't work!"
exit 1
fi
| Shell |
#!/bin/bash
#
# Constants
#
NORMAL_DIR='normal-icons-pre-v11'
V11_DIR='black-square-icons-v11'
NORMAL_ARG='normal'
V11_ARG='v11'
SWAP_ARG='swap'
SHOW_ARG='show'
NONE_ARG='none'
NORMAL_MIN_API='3'
V11_MIN_API='11'
NORMAL_V11_COMMENT="\/\/\/\*v11\*\/"
V11_V11_COMMENT="\/\*v11\*\/"
#
# Functions
#
function swap_cur... | Shell |
#!/bin/bash
#ruby generate_images.rb
#for i in res/drawable/b[0-9]*.png; do mogrify -resize 25x25 $i; done
#gimp res/drawable/b100.png
#for i in res/drawable/*.png; do mogrify -sharpen 25x25 $i; done
# shift ("roll") images 1px to the right
# for i in numbers/*.png; do convert $i -roll +1+0 $i; done
d=`dirname $(rea... | Shell |
#!/bin/sh
# After initial checkout from svn, you'll want to run this as your first step.
android update project --path . --target "android-15"
| Shell |
#!/bin/bash
#
# Constants
#
NORMAL_DIR='normal-icons-pre-v11'
V11_DIR='black-square-icons-v11'
NORMAL_ARG='normal'
V11_ARG='v11'
SWAP_ARG='swap'
SHOW_ARG='show'
NONE_ARG='none'
NORMAL_MIN_API='3'
V11_MIN_API='11'
NORMAL_V11_COMMENT="\/\/\/\*v11\*\/"
V11_V11_COMMENT="\/\*v11\*\/"
#
# Functions
#
function swap_cur... | Shell |
#!/bin/sh
#
# USAGE
#
# . setenv.sh # the "dot" is part of the command line
#
# ASSUMPTIONS
#
# * Android SDK/NDK requires some Debian/Ubuntu packages pre-installed:
#
# $ sudo apt-get install --yes bison build-essential curl flex gcc-multilib git-core g++-multilib gnupg
# $ sudo apt-get install -... | Shell |
#!/bin/sh
#
# USAGE
#
# b COMMAND
#
exec bash share/tools/build.sh $*
#--------------------------------------- The End
| Shell |
#!/bin/sh
#
# USAGE
#
# . setenv.sh # the "dot" is part of the command line
#
# ASSUMPTIONS
#
# * Android SDK/NDK requires some Debian/Ubuntu packages pre-installed:
#
# $ sudo apt-get install --yes bison build-essential curl flex gcc-multilib git-core g++-multilib gnupg
# $ sudo apt-get install -... | Shell |
#!/bin/sh
#
# USAGE
#
# b COMMAND
#
exec bash share/tools/build.sh $*
#--------------------------------------- The End
| Shell |
#!/bin/bash
#
# @(#) share/tools/build-sys.bash
#
# USAGE
#
# bash share/tools/build-sys.bash start-emulator
# bash share/tools/build-sys.bash build-kernel
#
# DESCRIPTION
#
# Build the complate platform or kernel for the Android Emulator.
#
. setenv.sh
#--------------------------------------- setup
setup_cust... | Shell |
#!/bin/bash
#
# @(#) share/tools/install_android_sdk_on_debian.bash
#
# USAGE
#
# bash share/tools/install_android_sdk_on_debian.bash
#
# DESCRIPTION
#
# Install Android SDK/NDK on Debin / Ubuntu / LinuxMint
#
_ARCH=` /bin/uname -m `
mkdir -p "${HOME}/run" && cd "${HOME}/run"
#-----------------------------------... | Shell |
#!/bin/bash
#
# @(#) share/tools/attic.build_app1.6.bash
#
# @see http://blog.javia.org/android-and-proguard-the-perfect-pair/
#
JAVA_SOURCES=` find src -name \*.java `
JAVA_LIBS=` find libs -name \*.jar `
PLATFORM=${_DROID_SDK_HOME}/platforms/android-1.6/
ANDROID_JAR=${PLATFORM}/android.jar
PROGUARD_JAR=/path/to/pro... | Shell |
#!/bin/bash
#
# @(#) share/tools/build-sys.bash
#
# USAGE
#
# bash share/tools/build-sys.bash start-emulator
# bash share/tools/build-sys.bash build-kernel
#
# DESCRIPTION
#
# Build the complate platform or kernel for the Android Emulator.
#
. setenv.sh
#--------------------------------------- setup
setup_cust... | Shell |
#!/bin/bash
#
# @(#) share/tools/build_app.bash
#
# USAGE
#
# bash share/tools/build_app.sh build [ debug | release ]
# bash share/tools/build_app.sh deploy [ debug | release ]
# bash share/tools/build_app.sh clean
#
# DESCRIPTION
#
# Builds .apk files from Java sources.
#
. setenv.sh
# for debugging - echo ... | Shell |
#!/bin/sh
#
# USAGE
#
# build.sh COMMAND
#
. setenv.sh
# for debugging - echo commands to execute
#set -x
#--------------------------------------- main
case "$1" in
clean )
exec bash share/tools/build_app.bash clean
;;
debug | release )
exec bash share/tools/build_app.bash build $1
;;
debug-depl... | Shell |
#!/bin/bash
#
# @(#) share/tools/attic.build_app1.6.bash
#
# @see http://blog.javia.org/android-and-proguard-the-perfect-pair/
#
JAVA_SOURCES=` find src -name \*.java `
JAVA_LIBS=` find libs -name \*.jar `
PLATFORM=${_DROID_SDK_HOME}/platforms/android-1.6/
ANDROID_JAR=${PLATFORM}/android.jar
PROGUARD_JAR=/path/to/pro... | Shell |
#!/bin/bash
#
# @(#) share/tools/install_android_sdk_on_debian.bash
#
# USAGE
#
# bash share/tools/install_android_sdk_on_debian.bash
#
# DESCRIPTION
#
# Install Android SDK/NDK on Debin / Ubuntu / LinuxMint
#
_ARCH=` /bin/uname -m `
mkdir -p "${HOME}/run" && cd "${HOME}/run"
#-----------------------------------... | Shell |
#
# Build a SAMSUNG NEXUS Android Kernel
#
# you NEED the Android NDK (not the SDK) here:
_NDK_DIRECTORY="${HOME}/run/android-ndk-r5b/"
_KERNEL_DIRECTORY="${HOME}/go/android.googlesource.com/kernel/samsung"
#_KERNEL_REMOTE="android-samsung-2.6.35-gingerbread"
#_KERNEL_LOCAL="android-samsung-2.6.35"
_KERNEL_REMOTE="a... | Shell |
#!/bin/bash
#
# @(#) share/tools/build_app.bash
#
# USAGE
#
# bash share/tools/build_app.sh build [ debug | release ]
# bash share/tools/build_app.sh deploy [ debug | release ]
# bash share/tools/build_app.sh clean
#
# DESCRIPTION
#
# Builds .apk files from Java sources.
#
. setenv.sh
# for debugging - echo ... | Shell |
#!/bin/sh
#
# USAGE
#
# build.sh COMMAND
#
. setenv.sh
# for debugging - echo commands to execute
#set -x
#--------------------------------------- main
case "$1" in
clean )
exec bash share/tools/build_app.bash clean
;;
debug | release )
exec bash share/tools/build_app.bash build $1
;;
debug-depl... | Shell |
#!/bin/sh
#
# USAGE
#
# . setenv.sh # the "dot" is part of the command line
#
# ASSUMPTIONS
#
# * Android SDK/NDK requires some Debian/Ubuntu packages pre-installed:
#
# $ sudo apt-get install --yes bison build-essential curl flex gcc-multilib git-core g++-multilib gnupg
# $ sudo apt-get install -... | Shell |
#!/bin/sh
#
# USAGE
#
# b COMMAND
#
exec bash share/tools/build.sh $*
#--------------------------------------- The End
| Shell |
#!/bin/sh
#
# USAGE
#
# . setenv.sh # the "dot" is part of the command line
#
# ASSUMPTIONS
#
# * Android SDK/NDK requires some Debian/Ubuntu packages pre-installed:
#
# $ sudo apt-get install --yes bison build-essential curl flex gcc-multilib git-core g++-multilib gnupg
# $ sudo apt-get install -... | Shell |
#!/bin/sh
#
# USAGE
#
# b COMMAND
#
exec bash share/tools/build.sh $*
#--------------------------------------- The End
| Shell |
#!/bin/bash
#
# @(#) share/tools/build-sys.bash
#
# USAGE
#
# bash share/tools/build-sys.bash start-emulator
# bash share/tools/build-sys.bash build-kernel
#
# DESCRIPTION
#
# Build the complate platform or kernel for the Android Emulator.
#
. setenv.sh
#--------------------------------------- setup
setup_cust... | Shell |
#!/bin/bash
#
# @(#) share/tools/install_android_sdk_on_debian.bash
#
# USAGE
#
# bash share/tools/install_android_sdk_on_debian.bash
#
# DESCRIPTION
#
# Install Android SDK/NDK on Debin / Ubuntu / LinuxMint
#
_ARCH=` /bin/uname -m `
mkdir -p "${HOME}/run" && cd "${HOME}/run"
#-----------------------------------... | Shell |
#!/bin/bash
#
# @(#) share/tools/attic.build_app1.6.bash
#
# @see http://blog.javia.org/android-and-proguard-the-perfect-pair/
#
JAVA_SOURCES=` find src -name \*.java `
JAVA_LIBS=` find libs -name \*.jar `
PLATFORM=${_DROID_SDK_HOME}/platforms/android-1.6/
ANDROID_JAR=${PLATFORM}/android.jar
PROGUARD_JAR=/path/to/pro... | Shell |
#!/bin/bash
#
# @(#) share/tools/build-sys.bash
#
# USAGE
#
# bash share/tools/build-sys.bash start-emulator
# bash share/tools/build-sys.bash build-kernel
#
# DESCRIPTION
#
# Build the complate platform or kernel for the Android Emulator.
#
. setenv.sh
#--------------------------------------- setup
setup_cust... | Shell |
#!/bin/bash
#
# @(#) share/tools/build_app.bash
#
# USAGE
#
# bash share/tools/build_app.sh build [ debug | release ]
# bash share/tools/build_app.sh deploy [ debug | release ]
# bash share/tools/build_app.sh clean
#
# DESCRIPTION
#
# Builds .apk files from Java sources.
#
. setenv.sh
# for debugging - echo ... | Shell |
#!/bin/sh
#
# USAGE
#
# build.sh COMMAND
#
. setenv.sh
# for debugging - echo commands to execute
#set -x
#--------------------------------------- main
case "$1" in
clean )
exec bash share/tools/build_app.bash clean
;;
debug | release )
exec bash share/tools/build_app.bash build $1
;;
debug-depl... | Shell |
#!/bin/bash
#
# @(#) share/tools/attic.build_app1.6.bash
#
# @see http://blog.javia.org/android-and-proguard-the-perfect-pair/
#
JAVA_SOURCES=` find src -name \*.java `
JAVA_LIBS=` find libs -name \*.jar `
PLATFORM=${_DROID_SDK_HOME}/platforms/android-1.6/
ANDROID_JAR=${PLATFORM}/android.jar
PROGUARD_JAR=/path/to/pro... | Shell |
#!/bin/bash
#
# @(#) share/tools/install_android_sdk_on_debian.bash
#
# USAGE
#
# bash share/tools/install_android_sdk_on_debian.bash
#
# DESCRIPTION
#
# Install Android SDK/NDK on Debin / Ubuntu / LinuxMint
#
_ARCH=` /bin/uname -m `
mkdir -p "${HOME}/run" && cd "${HOME}/run"
#-----------------------------------... | Shell |
#
# Build a SAMSUNG NEXUS Android Kernel
#
# you NEED the Android NDK (not the SDK) here:
_NDK_DIRECTORY="${HOME}/run/android-ndk-r5b/"
_KERNEL_DIRECTORY="${HOME}/go/android.googlesource.com/kernel/samsung"
#_KERNEL_REMOTE="android-samsung-2.6.35-gingerbread"
#_KERNEL_LOCAL="android-samsung-2.6.35"
_KERNEL_REMOTE="a... | Shell |
#!/bin/bash
#
# @(#) share/tools/build_app.bash
#
# USAGE
#
# bash share/tools/build_app.sh build [ debug | release ]
# bash share/tools/build_app.sh deploy [ debug | release ]
# bash share/tools/build_app.sh clean
#
# DESCRIPTION
#
# Builds .apk files from Java sources.
#
. setenv.sh
# for debugging - echo ... | Shell |
#!/bin/sh
#
# USAGE
#
# build.sh COMMAND
#
. setenv.sh
# for debugging - echo commands to execute
#set -x
#--------------------------------------- main
case "$1" in
clean )
exec bash share/tools/build_app.bash clean
;;
debug | release )
exec bash share/tools/build_app.bash build $1
;;
debug-depl... | Shell |
#! /bin/sh
# depcomp - compile a program generating dependencies as side-effects
scriptversion=2009-04-28.21; # UTC
# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free
# Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of t... | Shell |
# libtool (GNU libtool) 2.4
# Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006,
# 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
# This is free software; see the source for copying conditions. There is NO
# warranty; not... | Shell |
#!/bin/sh
# install - install a program, script, or datafile
scriptversion=2009-04-28.21; # UTC
# This originates from X11R5 (mit/util/scripts/install.sh), which was
# later released in X11R6 (xc/config/util/install.sh) with the
# following copyright and license.
#
# Copyright (C) 1994 X Consortium
#
# Per... | Shell |
#! /bin/sh
# depcomp - compile a program generating dependencies as side-effects
scriptversion=2009-04-28.21; # UTC
# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free
# Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of t... | Shell |
#! /bin/sh
# ltconfig - Create a system-specific libtool.
# Copyright (C) 1996-1998 Free Software Foundation, Inc.
# Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the F... | Shell |
#! /bin/sh
# Common stub for a few missing GNU programs while installing.
scriptversion=2009-04-28.21; # UTC
# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006,
# 2008, 2009 Free Software Foundation, Inc.
# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
# This program is f... | Shell |
#! /bin/sh
# Configuration validation subroutine script.
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
# Free Software Foundation, Inc.
timestamp='2009-11-20'
# This file is (in principle) common to ALL GNU software.
# The p... | Shell |
#! /bin/sh
# Attempt to guess a canonical system name.
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
# Free Software Foundation, Inc.
timestamp='2009-11-20'
# This file is free software; you can redistribute it and/or modify ... | Shell |
#!/bin/sh
# install - install a program, script, or datafile
scriptversion=2009-04-28.21; # UTC
# This originates from X11R5 (mit/util/scripts/install.sh), which was
# later released in X11R6 (xc/config/util/install.sh) with the
# following copyright and license.
#
# Copyright (C) 1994 X Consortium
#
# Per... | Shell |
#! /bin/sh
# Common stub for a few missing GNU programs while installing.
scriptversion=2009-04-28.21; # UTC
# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006,
# 2008, 2009 Free Software Foundation, Inc.
# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
# This program is f... | Shell |
#! /bin/sh
# ltconfig - Create a system-specific libtool.
# Copyright (C) 1996-1998 Free Software Foundation, Inc.
# Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the F... | Shell |
#! /bin/sh
# libpng-config
# provides configuration info for libpng.
# Copyright (C) 2002, 2004, 2006, 2007 Glenn Randers-Pehrson
# This code is released under the libpng license.
# For conditions of distribution and use, see the disclaimer
# and license in png.h
# Modeled after libxml-config.
version... | Shell |
#! /bin/sh
# libpng-config
# provides configuration info for libpng.
# Copyright (C) 2002 Glenn Randers-Pehrson
# This code is released under the libpng license.
# For conditions of distribution and use, see the disclaimer
# and license in png.h
# Modeled after libxml-config.
version=1.5.5
prefix=""
... | Shell |
#! /bin/sh
# libpng-config
# provides configuration info for libpng.
# Copyright (C) 2002 Glenn Randers-Pehrson
# This code is released under the libpng license.
# For conditions of distribution and use, see the disclaimer
# and license in png.h
# Modeled after libxml-config.
version=1.5.5
prefix=""
... | Shell |
#! /bin/sh
# libpng-config
# provides configuration info for libpng.
# Copyright (C) 2002, 2004, 2006, 2007 Glenn Randers-Pehrson
# This code is released under the libpng license.
# For conditions of distribution and use, see the disclaimer
# and license in png.h
# Modeled after libxml-config.
version... | Shell |
#!/bin/sh
# -- grayscale
./png2pnm -noraw ../pngsuite/basn0g01.png basn0g01.pgm
./png2pnm -noraw ../pngsuite/basn0g02.png basn0g02.pgm
./png2pnm -noraw ../pngsuite/basn0g04.png basn0g04.pgm
./png2pnm -noraw ../pngsuite/basn0g08.png basn0g08.pgm
./png2pnm -noraw ../pngsuite/basn0g16.png basn0g16.pgm
# -- full-col... | Shell |
#!/bin/sh
# -- grayscale
./png2pnm -noraw ../pngsuite/basn0g01.png basn0g01.pgm
./png2pnm -noraw ../pngsuite/basn0g02.png basn0g02.pgm
./png2pnm -noraw ../pngsuite/basn0g04.png basn0g04.pgm
./png2pnm -noraw ../pngsuite/basn0g08.png basn0g08.pgm
./png2pnm -noraw ../pngsuite/basn0g16.png basn0g16.pgm
# -- full-col... | Shell |
#!/bin/sh
make -f makefile.std
sh png2pnm.sh
sh pnm2png.sh
| Shell |
#!/bin/sh
# -- grayscale
./pnm2png basn0g01.pgm basn0g01.png
./pnm2png basn0g02.pgm basn0g02.png
./pnm2png basn0g04.pgm basn0g04.png
./pnm2png basn0g08.pgm basn0g08.png
./pnm2png basn0g16.pgm basn0g16.png
# -- full-color
./pnm2png basn2c08.ppm basn2c08.png
./pnm2png basn2c16.ppm basn2c16.png
# -- palletted
.... | Shell |
#!/bin/sh
make -f makefile.std
sh png2pnm.sh
sh pnm2png.sh
| Shell |
#!/bin/sh
# -- grayscale
./pnm2png basn0g01.pgm basn0g01.png
./pnm2png basn0g02.pgm basn0g02.png
./pnm2png basn0g04.pgm basn0g04.png
./pnm2png basn0g08.pgm basn0g08.png
./pnm2png basn0g16.pgm basn0g16.png
# -- full-color
./pnm2png basn2c08.ppm basn2c08.png
./pnm2png basn2c16.ppm basn2c16.png
# -- palletted
.... | Shell |
cp ../../pngminus/pnm2png.c pnm2pngm.c
cp ../../../*.h .
cp ../../../*.c .
rm example.c pngtest.c pngr*.c pngpread.c
# Change the next 2 lines if zlib is somewhere else.
cp ../../../../zlib/*.h .
cp ../../../../zlib/*.c .
rm inf*.[ch]
rm uncompr.c minigzip.c example.c gz*
| Shell |
cp ../../pngminus/png2pnm.c pngm2pnm.c
cp ../../../*.h .
cp ../../../*.c .
rm example.c pngtest.c pngpread.c pngw*.c
# change the following 2 lines if zlib is somewhere else
cp ../../../../zlib/*.h .
cp ../../../../zlib/*.c .
rm minigzip.c example.c compress.c deflate.c gz*
| Shell |
cp ../../gregbook/rpng2-x.c ../../gregbook/readpng2.[ch] .
cp ../../gregbook/COPYING ../../gregbook/LICENSE .
cp ../../../*.h .
cp ../../../*.c .
rm example.c pngtest.c pngw*.c
# change the following 2 lines if zlib is somewhere else
cp ../../../../zlib/*.h .
cp ../../../../zlib/*.c .
rm minigzip.c example.c co... | Shell |
#! /bin/sh
# libpng-config
# provides configuration info for libpng.
# Copyright (C) 2002, 2004, 2006, 2007 Glenn Randers-Pehrson
# This code is released under the libpng license.
# For conditions of distribution and use, see the disclaimer
# and license in png.h
# Modeled after libxml-config.
version... | Shell |
#! /bin/sh
# libpng-config
# provides configuration info for libpng.
# Copyright (C) 2002, 2004, 2006, 2007 Glenn Randers-Pehrson
# This code is released under the libpng license.
# For conditions of distribution and use, see the disclaimer
# and license in png.h
# Modeled after libxml-config.
version... | Shell |
#! /bin/bash
# Binary of the Texturepacker:
TEXTUREPACKER_BINARY=/usr/local/bin/TexturePacker
# Shared Spritesheet-Output-Definitions:
SPRITESHEET_OUTPUT_DIRECTORY="../assets/gfx/spritesheets/"
SPRITESHEET_OUTPUT_JAVAIDS_PACKAGE="org.anddev.andengine.examples.spritesheets"
SPRITESHEET_OUTPUT_JAVAIDS_DIRECTORY="../src... | Shell |
#! /bin/bash
# Binary of the Texturepacker:
TEXTUREPACKER_BINARY=/usr/local/bin/TexturePacker
# Shared Spritesheet-Output-Definitions:
SPRITESHEET_OUTPUT_DIRECTORY="../assets/gfx/spritesheets/"
SPRITESHEET_OUTPUT_JAVAIDS_PACKAGE="org.anddev.andengine.examples.spritesheets"
SPRITESHEET_OUTPUT_JAVAIDS_DIRECTORY="../src... | Shell |
cd ~/android/android-eksempler/AndroidElementer
svn up
cd assets/
rm -rf src AndroidManifest.xml
cp -a ../src ../AndroidManifest.xml .
svn commit -m "Ny kildekode" .
cd ..
ant clean
mkdir gen
rm -rf out
cd ..
rm -f AndroidElementer.zip
zip -9r AndroidElementer.zip AndroidElementer
scp AndroidElementer.zip javabog.dk:j... | Shell |
#!/bin/bash
PREBUILT=/home/administrator/android/android-ndk-r5/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86
PLATFORM=/home/administrator/android/android-ndk-r5/platforms/android-8/arch-arm
./configure --target-os=linux \
--arch=arm \
--enable-version3 \
--enable-gpl \
--enable-nonfree \
--disable... | Shell |
#!/bin/bash
PREBUILT=/home/administrator/android/android-ndk-r5/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86
PLATFORM=/home/administrator/android/android-ndk-r5/platforms/android-8/arch-arm
./configure --target-os=linux \
--arch=arm \
--enable-version3 \
--enable-gpl \
--enable-nonfree \
--disable... | Shell |
#!/bin/sh
#
# FFmpeg configure script
#
# Copyright (c) 2000-2002 Fabrice Bellard
# Copyright (c) 2005-2008 Diego Biurrun
# Copyright (c) 2005-2008 Mans Rullgard
#
# Prevent locale nonsense from breaking basic text processing.
LC_ALL=C
export LC_ALL
# make sure we are running under a compatible shell
# try to make th... | Shell |
#!/bin/sh
PREBUILT=/home/petr/projects/android_api/ndk/android-ndk-1.6_r1/build/prebuilt/linux-x86/arm-eabi-4.2.1
./configure --target-os=linux \
--arch=armv41 \
--enable-cross-compile \
--cc=$PREBUILT/bin/arm-eabi-gcc \
--cross-prefix=$PREBUILT/bin/arm-eabi- \
--nm=$PREBUILT/bin/arm-eabi-nm \
--extra-cflags="-fPIC -DA... | Shell |
#!/bin/sh
PREBUILT=/home/petr/projects/android_api/ndk/android-ndk-1.6_r1/build/prebuilt/linux-x86/arm-eabi-4.2.1
./configure --target-os=linux \
--arch=armv41 \
--enable-cross-compile \
--cc=$PREBUILT/bin/arm-eabi-gcc \
--cross-prefix=$PREBUILT/bin/arm-eabi- \
--nm=$PREBUILT/bin/arm-eabi-nm \
--extra-cflags="-fPIC -DA... | Shell |
#!/usr/bin/env bash
##############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to ... | Shell |
#! /bin/bash
# Binary of the Texturepacker:
TEXTUREPACKER_BINARY=/usr/local/bin/TexturePacker
# Shared TexturePack-Output-Definitions:
TEXTUREPACK_OUTPUT_DIRECTORY="../assets/gfx/texturepacks/"
TEXTUREPACK_OUTPUT_JAVAIDS_PACKAGE="org.website.project.texturepacks"
TEXTUREPACK_OUTPUT_JAVAIDS_DIRECTORY="../src/org/websi... | Shell |
#! /bin/bash
# Binary of the Texturepacker:
TEXTUREPACKER_BINARY=/usr/local/bin/TexturePacker
# Shared TexturePack-Output-Definitions:
TEXTUREPACK_OUTPUT_DIRECTORY="../assets/gfx/texturepacks/"
TEXTUREPACK_OUTPUT_JAVAIDS_PACKAGE="org.website.project.texturepacks"
TEXTUREPACK_OUTPUT_JAVAIDS_DIRECTORY="../src/org/websi... | Shell |
#!/bin/bash
NDK_DIRECTORY="/Users/ngramlich/Applications/android/ndk/r8e/"
SCRIPT_DIR="$( cd "$( dirname "${0}" )" && pwd )"
PROJECT_DIRECTORY=${SCRIPT_DIR}/../
# Run build:
pushd ${PROJECT_DIRECTORY} > /dev/null
${NDK_DIRECTORY}ndk-build -j8
# Clean temporary files:
rm -rf ${PROJECT_DIRECTORY}obj
find . -name gdb... | Shell |
#!/bin/bash
NDK_DIRECTORY="/Users/ngramlich/Applications/android/ndk/r8e/"
SCRIPT_DIR="$( cd "$( dirname "${0}" )" && pwd )"
PROJECT_DIRECTORY=${SCRIPT_DIR}/../
# Run build:
pushd ${PROJECT_DIRECTORY} > /dev/null
${NDK_DIRECTORY}ndk-build -j8
# Clean temporary files:
rm -rf ${PROJECT_DIRECTORY}obj
find . -name gdb... | Shell |
#!/bin/bash
NDK_DIRECTORY="/Users/ngramlich/Applications/android/ndk/r8e/"
SCRIPT_DIR="$( cd "$( dirname "${0}" )" && pwd )"
PROJECT_DIRECTORY=${SCRIPT_DIR}/../
# Run build:
pushd ${PROJECT_DIRECTORY} > /dev/null
${NDK_DIRECTORY}ndk-build -j8
# Clean temporary files:
rm -rf ${PROJECT_DIRECTORY}obj
find . -name gdb... | Shell |
#!/bin/bash
NDK_DIRECTORY="/Users/ngramlich/Applications/android/ndk/r8e/"
SCRIPT_DIR="$( cd "$( dirname "${0}" )" && pwd )"
PROJECT_DIRECTORY=${SCRIPT_DIR}/../
# Run build:
pushd ${PROJECT_DIRECTORY} > /dev/null
${NDK_DIRECTORY}ndk-build -j8
# Clean temporary files:
rm -rf ${PROJECT_DIRECTORY}obj
find . -name gdb... | Shell |
#!/usr/bin/env bash
##############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to ... | Shell |
#!sh
./android create project \
--target 1 \
--name RotateY \
--path ~/work/android-examples/RotateY \
--activity RotateYAct \
--package com.android.rotatey
| Shell |
#!sh
./android create project \
--target 1 \
--name RotateY \
--path ~/work/android-examples/RotateY \
--activity RotateYAct \
--package com.android.rotatey
| Shell |
#!/bin/sh
# START-COMMIT HOOK
#
# The start-commit hook is invoked before a Subversion txn is created
# in the process of doing a commit. Subversion runs this hook
# by invoking a program (script, executable, binary, etc.) named
# 'start-commit' (for which this file is a template)
# with the following ordered... | Shell |
#!/bin/sh
# POST-REVPROP-CHANGE HOOK
#
# The post-revprop-change hook is invoked after a revision property
# has been added, modified or deleted. Subversion runs this hook by
# invoking a program (script, executable, binary, etc.) named
# 'post-revprop-change' (for which this file is a template), with the
# f... | Shell |
#!/bin/sh
# POST-LOCK HOOK
#
# The post-lock hook is run after a path is locked. Subversion runs
# this hook by invoking a program (script, executable, binary, etc.)
# named 'post-lock' (for which this file is a template) with the
# following ordered arguments:
#
# [1] REPOS-PATH (the path to this repos... | Shell |
#!/bin/sh
# POST-LOCK HOOK
#
# The post-lock hook is run after a path is locked. Subversion runs
# this hook by invoking a program (script, executable, binary, etc.)
# named 'post-lock' (for which this file is a template) with the
# following ordered arguments:
#
# [1] REPOS-PATH (the path to this repos... | Shell |
#!/bin/sh
# PRE-LOCK HOOK
#
# The pre-lock hook is invoked before an exclusive lock is
# created. Subversion runs this hook by invoking a program
# (script, executable, binary, etc.) named 'pre-lock' (for which
# this file is a template), with the following ordered arguments:
#
# [1] REPOS-PATH (the pat... | Shell |
#!/bin/sh
# POST-UNLOCK HOOK
#
# The post-unlock hook runs after a path is unlocked. Subversion runs
# this hook by invoking a program (script, executable, binary, etc.)
# named 'post-unlock' (for which this file is a template) with the
# following ordered arguments:
#
# [1] REPOS-PATH (the path to this... | Shell |
#!/bin/sh
# PRE-COMMIT HOOK
#
# The pre-commit hook is invoked before a Subversion txn is
# committed. Subversion runs this hook by invoking a program
# (script, executable, binary, etc.) named 'pre-commit' (for which
# this file is a template), with the following ordered arguments:
#
# [1] REPOS-PATH (t... | Shell |
#!/bin/sh
# PRE-UNLOCK HOOK
#
# The pre-unlock hook is invoked before an exclusive lock is
# destroyed. Subversion runs this hook by invoking a program
# (script, executable, binary, etc.) named 'pre-unlock' (for which
# this file is a template), with the following ordered arguments:
#
# [1] REPOS-PATH ... | Shell |
#!/bin/sh
# POST-REVPROP-CHANGE HOOK
#
# The post-revprop-change hook is invoked after a revision property
# has been added, modified or deleted. Subversion runs this hook by
# invoking a program (script, executable, binary, etc.) named
# 'post-revprop-change' (for which this file is a template), with the
# f... | Shell |
#!/bin/sh
# POST-COMMIT HOOK
#
# The post-commit hook is invoked after a commit. Subversion runs
# this hook by invoking a program (script, executable, binary, etc.)
# named 'post-commit' (for which this file is a template) with the
# following ordered arguments:
#
# [1] REPOS-PATH (the path to this rep... | Shell |
#!/bin/sh
# START-COMMIT HOOK
#
# The start-commit hook is invoked before a Subversion txn is created
# in the process of doing a commit. Subversion runs this hook
# by invoking a program (script, executable, binary, etc.) named
# 'start-commit' (for which this file is a template)
# with the following ordered... | Shell |
#!/bin/sh
# PRE-REVPROP-CHANGE HOOK
#
# The pre-revprop-change hook is invoked before a revision property
# is added, modified or deleted. Subversion runs this hook by invoking
# a program (script, executable, binary, etc.) named 'pre-revprop-change'
# (for which this file is a template), with the following or... | Shell |
#!/bin/sh
# PRE-LOCK HOOK
#
# The pre-lock hook is invoked before an exclusive lock is
# created. Subversion runs this hook by invoking a program
# (script, executable, binary, etc.) named 'pre-lock' (for which
# this file is a template), with the following ordered arguments:
#
# [1] REPOS-PATH (the pat... | Shell |
#!/bin/sh
# PRE-UNLOCK HOOK
#
# The pre-unlock hook is invoked before an exclusive lock is
# destroyed. Subversion runs this hook by invoking a program
# (script, executable, binary, etc.) named 'pre-unlock' (for which
# this file is a template), with the following ordered arguments:
#
# [1] REPOS-PATH ... | Shell |
#!/bin/sh
# POST-COMMIT HOOK
#
# The post-commit hook is invoked after a commit. Subversion runs
# this hook by invoking a program (script, executable, binary, etc.)
# named 'post-commit' (for which this file is a template) with the
# following ordered arguments:
#
# [1] REPOS-PATH (the path to this rep... | Shell |
#!/bin/sh
# PRE-COMMIT HOOK
#
# The pre-commit hook is invoked before a Subversion txn is
# committed. Subversion runs this hook by invoking a program
# (script, executable, binary, etc.) named 'pre-commit' (for which
# this file is a template), with the following ordered arguments:
#
# [1] REPOS-PATH (t... | Shell |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.