source: custom/examples/997-nasm@ 15c9e72

2.3 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since 15c9e72 was dcf0e25, checked in by George Boudreau <georgeb@…>, 17 years ago

bug hunt in custom package examples

  • Property mode set to 100644
File size: 858 bytes
Line 
1#
2# $Id:$
3# NASM (Netwide Assembler) is an 80x86 assembler designed
4# for portability and modularity. It includes a
5# disassembler as well.
6
7PKG="nasm"
8PKG_VERSION="0.98.39"
9PKG_FILE="nasm-${PKG_VERSION}.tar.bz2"
10URL="http://downloads.sourceforge.net/nasm/${PKG_FILE}"
11MD5="2032ad44c7359f7a9a166a40a633e772"
12for i in PATCH{1..10}; do
13 unset $i
14done
15PATCH1="http://www.linuxfromscratch.org/patches/blfs/svn/nasm-0.98.39-security_fix-1.patch"
16
17( cat << "xEOFx"
18
19patch -Np1 -i ../nasm-0.98.39-security_fix-1.patch &&
20./configure --prefix=/usr &&
21make
22make -C rdoff/doc
23make -C rdoff/doc html
24
25make install &&
26make install_rdf &&
27install -v -m644 rdoff/doc/rdoff.info /usr/share/info &&
28install -v -m755 -d /usr/share/doc/nasm/html &&
29install -v -m644 rdoff/doc/v1-v2.txt /usr/share/doc/nasm &&
30cp -v -R rdoff/doc/rdoff /usr/share/doc/nasm/html
31
32xEOFx
33) > tmp
Note: See TracBrowser for help on using the repository browser.