# Maintainer: Chocobo1 pkgname=yasm-git pkgver=1.3.0.r55.g101bca9c pkgrel=1 pkgdesc="A complete rewrite of the NASM assembler under the BSD License" arch=('i686' 'x86_64') url="https://yasm.tortall.net/" license=('BSD') depends=('glibc') makedepends=('git' 'cmake' 'python') provides=("yasm=$pkgver") conflicts=('yasm') options=('staticlibs') source=("git+https://github.com/yasm/yasm.git") sha256sums=('SKIP') pkgver() { cd "yasm" git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' } build() { cd "yasm" cmake \ -B "_build" \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX="/usr" \ -DCMAKE_INSTALL_LIBDIR="lib" \ -DBUILD_SHARED_LIBS=OFF \ ./ make -C "_build" } check() { cd "yasm" #make -C "_build" test } package() { cd "yasm" make -C "_build" DESTDIR="$pkgdir" install install -Dm644 {BSD.txt,COPYING} -t "$pkgdir/usr/share/licenses/yasm" }