Magellan Linux

Annotation of /branches/R11-stable/core/nasm/nasm-2.10.09-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 18735 - (hide annotations) (download)
Wed Aug 14 11:34:06 2013 UTC (10 years, 10 months ago) by niro
File size: 872 byte(s)
-release branches/R11-stable
1 niro 18509 # $Id$
2    
3     PNAME="nasm"
4     PVER="2.10.09"
5     PBUILD="r1"
6    
7     PCAT="dev-lang"
8    
9     DESCRIPTION="NASM is an 80x86 assembler designed for portability and modularity."
10     HOMEPAGE="http://nasm.sourceforge.net/"
11    
12     DEPEND=">= dev-lang/perl-5.16
13     >= sys-dev/gcc-4.7"
14    
15     SRCFILE="${PNAME}-${PVER}.tar.bz2"
16     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17    
18     sminclude mtools mbuild
19     msetfeature "!check"
20    
21     SRC_URI=(
22     http://www.nasm.us/pub/${PNAME}/releasebuilds/${PVER}/${SRCFILE}
23     mirror://${PNAME}/${SRCFILE}
24     )
25    
26     UP2DATE="updatecmd -listonly http://www.nasm.us/pub/${PNAME}/releasebuilds/'?C=M;O=A' | grep -v rc | sed -n 's:.*/\(.*\)/:\1:;$ p'"
27    
28     src_compile()
29     {
30     cd ${SRCDIR}
31    
32     mconfigure || die
33     # eglibc doesnt like parallel builds
34 niro 18510 mmake -j1 all || die
35 niro 18509 }
36    
37     src_install()
38     {
39     cd ${SRCDIR}
40    
41     mmake INSTALLROOT=${BINDIR} install install_rdf || die
42     minstalldocs AUTHORS ChangeLog CHANGES COPYING README TODO || die
43     }