blob: 24c71c9934a996898253e454a255ddc194cb803c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
MAKEDEPS=(make)
DEPS=(glibc)
PKG_VER=2.15.05
SOURCE=https://www.nasm.us/pub/nasm/releasebuilds/$PKG_VER/nasm-$PKG_VER.tar.xz
DESC="80x86 assembler designed for portability and modularity"
build () {
./configure --prefix=/usr &&
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|