add package yasm

pull/207/merge
Tony Theodore 11 years ago
parent 08d42befe9
commit 634bdb4a4f

@ -2353,6 +2353,11 @@ USE_OSGPLUGIN(<plugin2>)
<td id="xz-version">5.0.5</td>
<td id="xz-website"><a href="http://tukaani.org/xz/">XZ</a></td>
</tr>
<tr>
<td id="yasm-package">yasm</td>
<td id="yasm-version">1.2.0</td>
<td id="yasm-website"><a href="http://yasm.tortall.net//">Yasm</a></td>
</tr>
<tr>
<td id="zlib-package">zlib</td>
<td id="zlib-version">1.2.8</td>

@ -0,0 +1,25 @@
# This file is part of MXE.
# See index.html for further information.
PKG := yasm
$(PKG)_CHECKSUM := 773d28f27f83c44ac35079add0d3167ca6c1def8
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := http://www.tortall.net/projects/$(PKG)/releases/$($(PKG)_FILE)
$(PKG)_DEPS := gcc
define $(PKG)_UPDATE
$(WGET) -q -O- 'https://github.com/yasm/yasm/tags' | \
$(SED) -n 's,.*href="/yasm/yasm/archive/v\([0-9][^"]*\)\.tar.*,\1,p' | \
head -1
endef
define $(PKG)_BUILD
# yasm is always static
cd '$(1)' && '$(1)/configure' \
--host='$(TARGET)' \
--build="`config.guess`" \
--prefix='$(PREFIX)/$(TARGET)' \
--disable-nls
$(MAKE) -C '$(1)' -j '$(JOBS)' install
endef
Loading…
Cancel
Save