mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 14:37:15 +08:00
24 lines
742 B
Bash
24 lines
742 B
Bash
|
# $Id: PKGBUILD 37376 2009-05-01 08:16:17Z giovanni $
|
||
|
# Maintainer: Aaron Griffin <aaron@archlinux.org>
|
||
|
# Contributor: Vinay S Shastry <vinayshastry@gmail.com>
|
||
|
|
||
|
pkgname=yasm
|
||
|
pkgver=0.8.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="A rewrite of NASM to allow for multiple syntax supported (NASM, TASM, GAS, etc.)"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('custom')
|
||
|
url="http://www.tortall.net/projects/yasm/"
|
||
|
depends=('glibc')
|
||
|
source=(http://www.tortall.net/projects/yasm/releases/${pkgname}-${pkgver}.tar.gz)
|
||
|
options=('!libtool')
|
||
|
md5sums=('84a72204c9b452a00b39b1b00495163f')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=${pkgdir} install
|
||
|
install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
|
||
|
}
|