small corrections for package gsl (by Mark Brand)

This commit is contained in:
Volker Grabsch 2010-04-10 05:08:25 +02:00
parent 25412c401c
commit 4d175a8f3d
1 changed files with 8 additions and 7 deletions

View File

@ -1,15 +1,15 @@
# This file is part of mingw-cross-env.
# See doc/index.html for further information.
# gsl
# GSL
PKG := gsl
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.14
$(PKG)_CHECKSUM := e1a600e4fe359692e6f0e28b7e12a96681efbe52
$(PKG)_SUBDIR := gsl-$($(PKG)_VERSION)
$(PKG)_FILE := gsl-$($(PKG)_VERSION).tar.gz
$(PKG)_WEBSITE := http://www.gnu.org/software/gsl
$(PKG)_URL := ftp://ftp.gnu.org/gnu/gsl/$($(PKG)_FILE)
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
$(PKG)_WEBSITE := http://www.gnu.org/software/gsl/
$(PKG)_URL := http://ftp.gnu.org/gnu/$(PKG)/$($(PKG)_FILE)
$(PKG)_DEPS := gcc
define $(PKG)_UPDATE
@ -22,8 +22,9 @@ endef
define $(PKG)_BUILD
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--prefix='$(PREFIX)/$(TARGET)' \
--disable-shared \
--prefix='$(PREFIX)/$(TARGET)'
--enable-static
$(MAKE) -C '$(1)' -j '$(JOBS)'
$(MAKE) -C '$(1)' -j '$(JOBS)' install
$(MAKE) -C '$(1)' -j 1 install
endef