Code Search for Developers
 
 
  

Makefile from GreenSocs at Krugle


Show Makefile syntax highlighted

# Package properties
PACKAGE = jre
VERSION = 1.5.0_06
SECTION = devel
PRIORITY = optional
DESCRIPTION = "Java Runtime Environment"
DEPENDS = 


# Set this variable to some path inside the tarball
VERIFY  = jre1.5.0_06/bin/java

# Substitute this to commands if necessary to change the binary tree before deb pack
UNPACK_HOOK = mv jre1.5.0_06 jre; mkdir bin; ln -s ../jre/bin/java bin/java



# Rules for architectures

ifndef ARCH
  $(error Variable ARCH must be defined in the command line)
endif

ifeq (${ARCH},i386)
  ARCHIVE = jre-1_5_0_06-linux-i586.bin
  URL     = http://jdl.sun.com/webapps/download/AutoDL?BundleId=10336
else
ifeq (${ARCH},amd64)
  ARCHIVE = jre-1_5_0_06-linux-amd64.bin
  URL     = http://jdl.sun.com/webapps/download/AutoDL?BundleId=10334
else
  $(error Architecture "$(ARCH)" not supported)
endif
endif


# Command for unpacking the java binary
unpack.bin: UNPACK_CMD = MORE=-1000 sh <<<y


# Set operation
OP = tar2deb


include ../Makefile.packages




See more files for this project here

GreenSocs

To develop SystemC infrustructure, basic IP, patches and add on library code for eventual standerdization.\r\nThe GreenSocs project is made up of a number of contributions (sub projects). Please visit www.greensocs.com for more information.

Project homepage: http://sourceforge.net/projects/greensocs
Programming language(s): C,C++,Java,Perl,XML
License: other

  Makefile