Last active
August 29, 2015 14:05
-
-
Save ryanmjacobs/f27ebfef295a3e4ecb3f to your computer and use it in GitHub Desktop.
naken_asm 2014-07-05 PKGBUILD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Author: mr1337357 <[email protected]> | |
# Author: ryanjacobs <[email protected]> | |
pkgname=naken_asm | |
pkgver=2014.07.05 | |
pkgrel=1 | |
pkgdesc="A raw, simple assembler supporting 65xx, ARM, dsPIC, MIPS, 8051/8052, and MSP430 instruction sets" | |
arch=('i686' 'x86_64' 'arm') | |
url="http://www.mikekohn.net/micro/naken_asm.php" | |
license=('GPL') | |
depends=('readline') | |
source=('http://downloads.mikekohn.net/naken_asm/naken_asm-2014-07-05.tar.gz') | |
md5sums=('54338b429c1783e936bcff081a22a9c6') | |
build() { | |
cd $srcdir/$pkgname-${pkgver//./-} | |
./configure --install-prefix='${DESTDIR}/usr' | |
make | |
} | |
package() { | |
cd $srcdir/$pkgname-${pkgver//./-} | |
make DESTDIR="$pkgdir" install | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment