updated on Mon Jan 23 12:00:23 UTC 2012
[aur-mirror.git] / hla / PKGBUILD
blob596adc021994e8be01fe155b85c9501af5b0a553
1 # $Id: pkgbuild-mode.el,v 1.23 2007/10/20 16:02:14 juergen Exp $
2 # vim:set ts=2 sw=2 et:
3 # Maintainer: Andreas B. Wagner <AndreasBWagner@pointfree.net>
4 # Contributor: Geoffrey Teale <tealeg@stop-squark>
5 pkgname=hla
6 pkgver=2.16
7 pkgrel=1 
8 pkgdesc="The high level assembly language as used in the Art of Assembler book by Randy Hyde"
9 url="http://homepage.mac.com/randyhyde/webster.cs.ucr.edu/"
10 arch=('i686')
11 license=('unkown')
12 depends=(binutils)
13 makedepends=(binutils flex bison gcc)
14 conflicts=()
15 replaces=()
16 backup=()
17 install=
19 source=(${url}/HighLevelAsm/HLAv${pkgver}/linux.hla.tar.gz
20         hla.sh)
21 build() { 
22   cd $startdir/src/usr/hla
23   install -D -m755 hla "${pkgdir}/usr/bin/hla" || return 1
24   install -D -m755 hlacmp "${pkgdir}/usr/bin/hlacmp" || return 1
25   install -D -m755 hlaparse "${pkgdir}/usr/bin/hlaparse" || return 1
26   install -D -m755 delete "${pkgdir}/usr/bin/delete" || return 1
27   cd hlalib
28   install  -m755 -D hlalib.a "${pkgdir}/usr/lib/hlalib.a" || return 1
29   install  -m755 -D hlalib_safe.a "${pkgdir}/usr/lib/hlalib_safe.a" || return 1
30   cd ../include
31   find ./ -name "*.hhf" -exec install -D -m555 {} "${pkgdir}/usr/include/{}" \; || return 1
32   cd $startdir/src
33   install -D -m755 ../hla.sh "${pkgdir}/etc/profile.d/hla.sh" || return 1
36 md5sums=('b21999432dba1583508036878325a65e'
37          '86e54485cbbd55362d59de4f0a7c352a')