🔒 Repository is read-only – file editing is disabled.

recipes/utils/yasm/PAGBUILD.yaml main

27 linii Raw ← Powrót
123456789101112131415161718192021222324252627
pkgname: yasm
pkgver: '1.3.0'
pkgrel: '2'
pkgdesc: 'A rewrite of NASM to allow for multiple syntax supported (NASM, TASM, GAS, etc.)'
url: 'https://www.tortall.net/projects/yasm/'
arch: x86_64
depends: []
makedepends: []
source:
- 'https://www.tortall.net/projects/${pkgname}/releases/${pkgname}-${pkgver}.tar.gz'

sha256sums:
- SKIP

build: |
  cd ${pkgname}-${pkgver}

  # No need Microsoft programs
  sed -i 's#) ytasm.*#)#' Makefile.in
  ./configure --prefix=/usr \
  	--mandir=/usr/share/man \
  	--infodir=/usr/share/info
  make
  make DESTDIR=${PKGDIR} install

package: |
  true