| 1 | # $FreeWRT$
|
|---|
| 2 | #-
|
|---|
| 3 | # This file is part of the FreeWRT project. FreeWRT is copyrighted
|
|---|
| 4 | # material, please see the LICENCE file in the top-level directory
|
|---|
| 5 | # or at http://www.freewrt.org/licence for details.
|
|---|
| 6 |
|
|---|
| 7 | include $(TOPDIR)/rules.mk
|
|---|
| 8 |
|
|---|
| 9 | PKG_NAME:= sablevm
|
|---|
| 10 | PKG_VERSION:= 1.13
|
|---|
| 11 | PKG_RELEASE:= 1
|
|---|
| 12 | PKG_MD5SUM:= d5828200032bfe921dd43e450931e38c
|
|---|
| 13 |
|
|---|
| 14 | PKG_SOURCE_URL:= http://sablevm.org/download/release/$(PKG_VERSION)/
|
|---|
| 15 | PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|---|
| 16 |
|
|---|
| 17 | include $(TOPDIR)/mk/package.mk
|
|---|
| 18 |
|
|---|
| 19 | FWRT_PACKAGE_SABLEVM=m
|
|---|
| 20 |
|
|---|
| 21 | $(eval $(call PKG_template,SABLEVM,sablevm,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|---|
| 22 |
|
|---|
| 23 | $(WRKBUILD)/.configured:
|
|---|
| 24 | (cd $(WRKBUILD); rm -rf config.{cache,status} ; \
|
|---|
| 25 | $(TARGET_CONFIGURE_OPTS) \
|
|---|
| 26 | CFLAGS="$(strip $(TARGET_CFLAGS))" \
|
|---|
| 27 | CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
|
|---|
| 28 | LDFLAGS="-L$(STAGING_DIR)/usr/lib -lffi -lltdl -lpopt -lz" \
|
|---|
| 29 | ./configure \
|
|---|
| 30 | --target=$(GNU_TARGET_NAME) \
|
|---|
| 31 | --host=$(GNU_TARGET_NAME) \
|
|---|
| 32 | --build=$(GNU_HOST_NAME) \
|
|---|
| 33 | --program-prefix="" \
|
|---|
| 34 | --program-suffix="" \
|
|---|
| 35 | --prefix=/usr \
|
|---|
| 36 | --exec-prefix=/usr \
|
|---|
| 37 | --bindir=/usr/bin \
|
|---|
| 38 | --datadir=/usr/share \
|
|---|
| 39 | --includedir=/usr/include \
|
|---|
| 40 | --infodir=/usr/share/info \
|
|---|
| 41 | --libdir=/usr/lib \
|
|---|
| 42 | --libexecdir=/usr/lib \
|
|---|
| 43 | --localstatedir=/var \
|
|---|
| 44 | --mandir=/usr/share/man \
|
|---|
| 45 | --sbindir=/usr/sbin \
|
|---|
| 46 | --sysconfdir=/etc \
|
|---|
| 47 | --disable-nls \
|
|---|
| 48 | --enable-shared \
|
|---|
| 49 | --disable-static \
|
|---|
| 50 | );
|
|---|
| 51 | touch $@
|
|---|
| 52 |
|
|---|
| 53 | $(WRKBUILD)/.built:
|
|---|
| 54 | rm -rf $(WRKINST)
|
|---|
| 55 | mkdir -p $(WRKINST)
|
|---|
| 56 | $(MAKE) -C $(WRKBUILD) \
|
|---|
| 57 | DESTDIR="$(WRKINST)" \
|
|---|
| 58 | all install
|
|---|
| 59 | touch $@
|
|---|
| 60 |
|
|---|
| 61 | $(IPKG_SABLEVM):
|
|---|
| 62 | install -m0755 -d $(IDIR_SABLEVM)/usr/bin
|
|---|
| 63 | $(CP) $(WRKINST)/usr/bin/{java-,}sablevm $(IDIR_SABLEVM)/usr/bin/
|
|---|
| 64 | install -m0755 -d $(IDIR_SABLEVM)/usr/lib
|
|---|
| 65 | $(CP) $(WRKINST)/usr/lib/libsablevm-*.so $(IDIR_SABLEVM)/usr/lib/
|
|---|
| 66 | $(RSTRIP) $(IDIR_SABLEVM)
|
|---|
| 67 | $(IPKG_BUILD) $(IDIR_SABLEVM) $(PACKAGE_DIR)
|
|---|