Fix ordering

This commit is contained in:
Vale
2016-02-17 14:26:37 -05:00
parent c78e400f98
commit 4ceccd41e1
491 changed files with 2610 additions and 2977 deletions

View File

@@ -1,7 +1,16 @@
SUMMARY="The Yasm modular assembler"
DESCRIPTION="
Yasm is a complete rewrite of the NASM assembler under the “new” BSD License \
(some portions are under other licenses, see COPYING for details).
Yasm currently supports the x86 and AMD64 instruction sets, accepts NASM and \
GAS assembler syntaxes, outputs binary, ELF32, ELF64, 32 and 64-bit Mach-O, \
RDOFF2, COFF, Win32, and Win64 object formats, and generates source debugging \
information in STABS, DWARF 2, and CodeView 8 formats.
Yasm can be easily integrated into Visual Studio 2005/2008 and 2010 for \
assembly of NASM or GAS syntax code into Win32 or Win64 object files.
"
HOMEPAGE="http://www.tortall.net/projects/yasm/"
SOURCE_URI="http://www.tortall.net/projects/yasm/releases/yasm-1.1.0.tar.gz"
CHECKSUM_SHA256="e5d56b582f3d0c30ed5c4fc221063e4175602307ea645520889458133671c232"
COPYRIGHT="2001-2010 Peter Johnson and other Yasm developers."
LICENSE="
Artistic
BSD (2-clause)
@@ -9,8 +18,10 @@ LICENSE="
GNU GPL v2
GNU LGPL v2
"
COPYRIGHT="2001-2010 Peter Johnson and other Yasm developers."
REVISION="2"
SOURCE_URI="http://www.tortall.net/projects/yasm/releases/yasm-1.1.0.tar.gz"
CHECKSUM_SHA256="e5d56b582f3d0c30ed5c4fc221063e4175602307ea645520889458133671c232"
ARCHITECTURES="x86_gcc2 ?x86"
PROVIDES="
@@ -21,6 +32,7 @@ PROVIDES="
REQUIRES="
haiku
"
BUILD_REQUIRES="
"
BUILD_PREREQUIRES="
@@ -31,7 +43,6 @@ BUILD_PREREQUIRES="
cmd:make
"
BUILD()
{
libtoolize --force --copy --install
@@ -44,15 +55,3 @@ INSTALL()
{
make install
}
DESCRIPTION="
Yasm is a complete rewrite of the NASM assembler under the “new” BSD License \
(some portions are under other licenses, see COPYING for details).
Yasm currently supports the x86 and AMD64 instruction sets, accepts NASM and \
GAS assembler syntaxes, outputs binary, ELF32, ELF64, 32 and 64-bit Mach-O, \
RDOFF2, COFF, Win32, and Win64 object formats, and generates source debugging \
information in STABS, DWARF 2, and CodeView 8 formats.
Yasm can be easily integrated into Visual Studio 2005/2008 and 2010 for \
assembly of NASM or GAS syntax code into Win32 or Win64 object files.
"