2009-10-10 02:23:22 +00:00
|
|
|
# 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.)"
|
2009-10-11 04:11:32 +00:00
|
|
|
arch=('arm')
|
2009-10-10 02:23:22 +00:00
|
|
|
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
|
|
|
|
}
|