Advertisement
Guest User

Untitled

a guest
Jun 30th, 2021
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.67 KB | None | 0 0
  1. # Maintainer: Bradan J. Wolbeck <bwolbeck@compaqdisc.com>
  2. # Contributor: Sean Enck <enckse@gmail.com>
  3. # Contributor: John K. Luebs <https://github.com/jkl1337>
  4.  
  5. pkgname=zasm
  6. pkgver=4.4.8
  7. pkgrel=1
  8. pkgdesc="A 2-pass assembler for the Zilog 8-bit Z80 CPU"
  9. arch=('any')
  10. url="http://k1.spdns.de/Develop/Projects/zasm/"
  11. license=('BSD')
  12. source=("git+https://github.com/Megatokio/zasm.git#tag=${pkgver}"
  13.         "git+https://github.com/Megatokio/Libraries.git#commit=c5cb3ed512c677db6f33e2d3539dfbb6e547030b")
  14. sha256sums=('SKIP' 'SKIP')
  15.  
  16. build() {
  17.   cd ${srcdir}/${pkgname}
  18.   make
  19. }
  20.  
  21. package() {
  22.   cd ${srcdir}/${pkgname}
  23.   install -Dm755 zasm "${pkgdir}/usr/bin/zasm"
  24. }
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement