toolchain:

- add new package yasm
This commit is contained in:
Stephan Raue 2009-10-27 02:53:29 +01:00
parent 9aaa2ecf96
commit 727d3a1f1a
3 changed files with 29 additions and 0 deletions

View File

@ -19,3 +19,4 @@ if [ "c" != "$TOOLCHAIN_LANGUAGES" ]; then
fi fi
$SCRIPTS/install cmake $SCRIPTS/install cmake
$SCRIPTS/build yasm

View File

@ -0,0 +1,27 @@
#!/bin/sh
. config/options
export CC=$HOST_CC
export CXX=$HOST_CXX
export CFLAGS="$HOST_CFLAGS"
export CXXFLAGS="$HOST_CXXFLAGS"
cd $PKG_BUILD
./configure --prefix=$ROOT/$TOOLCHAIN \
--disable-debug \
--disable-warnerror \
--disable-profiling \
--disable-gcov \
--disable-python \
--disable-python-bindings \
--enable-nls \
--disable-rpath \
--without-dmalloc \
--with-gnu-ld \
--without-libiconv-prefix \
--without-libintl-prefix
make
make install

View File

@ -0,0 +1 @@
http://www.tortall.net/projects/yasm/releases/yasm-0.8.0.tar.gz