12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- program=nasm
- version=2.14.02
- release=1
- outdir="${outdir}/${arch}/devel"
- tarname=${program}-${version}.tar.bz2
- fetch=http://www.nasm.us/pub/nasm/releasebuilds/$version/$tarname
- description="
- A free portable assembler.
- Designed for the Intel 80x86 microprocessor series,
- using primarily the traditional Intel instruction mnemonics and syntax.
- "
- homepage=http://nasm.us
- license=BSD
- docs="AUTHORS CHANGES ChangeLog LICENSE README TODO"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- set -e
- unpack "${tardir}/$tarname"
- cd "$srcdir"
-
- chmod -R u+w,go-w,a+rX-s .
- ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
- $configure_args \
- --mandir=$mandir \
- --docdir=$docsdir \
- --disable-pdf-compression \
- --enable-sections \
- --build="$(cc -dumpmachine)"
- make -j${jobs} V=1
- make -j${jobs} DESTDIR="$destdir" install install_rdf
-
- lzip -9 "${destdir}/${mandir}/"man1/*.1
-
- mkdir -p "${destdir}${docsdir}"
- cp -p $docs "${destdir}${docsdir}"
- }
|