diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/yasm/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/yasm/PKGBUILD')
-rw-r--r-- | extra/yasm/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/extra/yasm/PKGBUILD b/extra/yasm/PKGBUILD new file mode 100644 index 000000000..950d609ca --- /dev/null +++ b/extra/yasm/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 98381 2010-11-08 19:21:18Z andrea $ +# Maintainer: +# Contributor: Aaron Griffin <aaron@archlinux.org> +# Contributor: Vinay S Shastry <vinayshastry@gmail.com> + +pkgname=yasm +pkgver=1.1.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=('8392e5f2235c2c2a981e1a633f2698cb') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install + install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE +} |