Update package version to 3.00
This commit is contained in:
@@ -1,9 +1,25 @@
|
|||||||
name: nasm
|
name: nasm
|
||||||
description: portable x86 architecture assembler
|
description: portable x86 architecture assembler
|
||||||
version: 2.16.03
|
version: "3.00"
|
||||||
|
revision: 1
|
||||||
url: https://www.nasm.us/
|
url: https://www.nasm.us/
|
||||||
license: BSD
|
license: BSD
|
||||||
architecture: any
|
architecture: any
|
||||||
depends: ["glibc"]
|
|
||||||
make_depends: ["adobe-source-code-pro-fonts","adobe-source-sans-fonts","asciidoc","diffutils","fontconfig","ghostscript","perl-font-ttf","perl-sort-versions","xmlto"]
|
|
||||||
type: source
|
type: source
|
||||||
|
depends:
|
||||||
|
- glibc
|
||||||
|
make_depends:
|
||||||
|
- adobe-source-code-pro-fonts
|
||||||
|
- adobe-source-sans-fonts
|
||||||
|
- asciidoc
|
||||||
|
- diffutils
|
||||||
|
- fontconfig
|
||||||
|
- ghostscript
|
||||||
|
- perl-font-ttf
|
||||||
|
- perl-sort-versions
|
||||||
|
- xmlto
|
||||||
|
downloads:
|
||||||
|
- url: https://github.com/netwide-assembler/nasm/archive/refs/tags/nasm-${BPM_PKG_VERSION}.tar.gz
|
||||||
|
extract_to: ${BPM_SOURCE}
|
||||||
|
extract_strip_components: 1
|
||||||
|
checksum: e37cb8ef28d5179eb46658c93e3028f40e283f1e88781ef750d42533e9b9f437
|
||||||
|
|||||||
@@ -2,15 +2,9 @@
|
|||||||
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
|
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
|
||||||
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
|
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
|
||||||
|
|
||||||
DOWNLOAD="https://github.com/netwide-assembler/nasm/archive/refs/tags/nasm-${BPM_PKG_VERSION}.tar.gz"
|
|
||||||
FILENAME="${DOWNLOAD##*/}"
|
|
||||||
|
|
||||||
# The prepare function is executed in the root of the temp directory
|
# The prepare function is executed in the root of the temp directory
|
||||||
# This function is used for downloading files and putting them into the correct location
|
# This function is used for putting downloaded files to the correct location or applying patches
|
||||||
prepare() {
|
prepare() {
|
||||||
wget "$DOWNLOAD"
|
|
||||||
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
|
|
||||||
|
|
||||||
cd "$BPM_SOURCE"
|
cd "$BPM_SOURCE"
|
||||||
NOCONFIGURE=1 ./autogen.sh
|
NOCONFIGURE=1 ./autogen.sh
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user