diff options
author | Tony Theodore <tonyt@logyst.com> | 2010-11-16 18:06:13 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2010-11-16 18:06:13 (GMT) |
commit | 0b96dfb051e1378f6c22f7502d6c86423e82b18e (patch) | |
tree | 46b55d8d0a827d05d409d7fa24e4ca3537735e44 | |
parent | d60b42fa532a0703a3f7b79125889cbd823183f9 (diff) | |
download | mxe-0b96dfb051e1378f6c22f7502d6c86423e82b18e.zip mxe-0b96dfb051e1378f6c22f7502d6c86423e82b18e.tar.gz mxe-0b96dfb051e1378f6c22f7502d6c86423e82b18e.tar.bz2 |
new package: atlas
-rw-r--r-- | src/atlas.mk | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/atlas.mk b/src/atlas.mk new file mode 100644 index 0000000..7b2d5f2 --- /dev/null +++ b/src/atlas.mk @@ -0,0 +1,25 @@ +# This file is part of mingw-cross-env. +# See doc/index.html for further information. + +# ATLAS +PKG := atlas +$(PKG)_IGNORE := +$(PKG)_VERSION := 3.8.3 +$(PKG)_CHECKSUM := c7546210df4796457d9e96a00444adc4c0f2e77f +$(PKG)_SUBDIR := ATLAS +$(PKG)_FILE := $(PKG)$($(PKG)_VERSION).tar.bz2 +$(PKG)_WEBSITE := http://math-atlas.sourceforge.net/ +$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/math-atlas/Stable/$($(PKG)_VERSION)/$($(PKG)_FILE) +$(PKG)_DEPS := gcc + +define $(PKG)_UPDATE + # seems to use even/odd development versioning +endef + +define $(PKG)_BUILD + mkdir '$(1).build' + cd '$(1).build' && '$(1)'/configure \ + --prefix='$(PREFIX)/$(TARGET)' \ + --cc='$(TARGET)-gcc' + $(MAKE) -C '$(1).build' -j 1 install +endef |