mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 05:37:13 +08:00
23 lines
634 B
Bash
23 lines
634 B
Bash
|
# $Id: PKGBUILD 74603 2010-03-31 18:55:53Z giovanni $
|
||
|
# Maintainer: Aaron Griffin <aaron@archlinux.org>
|
||
|
# Committer: Judd Vinet <jvinet@zeroflux.org>
|
||
|
|
||
|
pkgname=nasm
|
||
|
pkgver=2.08.01
|
||
|
pkgrel=1
|
||
|
pkgdesc="80x86 assembler designed for portability and modularity"
|
||
|
url="http://www.nasm.us"
|
||
|
license=('LGPL')
|
||
|
arch=('i686' 'x86_64')
|
||
|
depends=('glibc')
|
||
|
source=(http://www.nasm.us/pub/nasm/releasebuilds/${pkgver}/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('1e3ebc1289c2be5963571c0937b7a211')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
|
||
|
./configure --prefix=/usr || return 1
|
||
|
make || return 1
|
||
|
make INSTALLROOT="${pkgdir}" install || return 1
|
||
|
}
|