Fixed man page path in base/chrpath Removed unnecessary -a while cp'ing COPYING file in base/cpio Added code to copy LICENSEs in base/{dmraid,libyaml,ndctl} Only cp COPYING file in base/{libgit2,nasm,sbc,slapt-get} Fix prefix in base/libvpx Fix desc variable value in base/ncdu base/patch does not need to be statically-linked Disabled installation of example files in base/qpdf Discarded --disable-tcl build option in base/sqlite Applied CVE patch 2022-48303 for base/tar
33 lines
685 B
Text
Executable file
33 lines
685 B
Text
Executable file
app=nasm
|
|
version=2.14.02
|
|
build=2sml
|
|
homepage="https://www.nasm.us/"
|
|
download="https://www.nasm.us/pub/nasm/releasebuilds/$version/nasm-$version.tar.xz"
|
|
desc="Netwide assembler providing instruction mnemonics and syntax"
|
|
requires="musl"
|
|
|
|
prepbuilddir() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
}
|
|
|
|
build() {
|
|
./configure \
|
|
--prefix="" \
|
|
$hostdist
|
|
|
|
make
|
|
make install DESTDIR=$pkg
|
|
|
|
cp LICENSE $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
760e44e99737cf5609c13b365a0d9edcb31bd767e6906f53e9134c507edd4b722ef11f230450b0065820b5a9d5fa3e36dc13407dc2747b6e5afaa48a28b0ea41 nasm-2.14.02.tar.lz
|
|
"
|