summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ce034f68b86f74088a4ffd542ce7dd1b3dfccac0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

# Maintainer: Alex Parrill <alex.parrill@col32.net>
pkgname=asm2bf
pkgver=v1.5.4
pkgrel=1
pkgdesc="The only true brainfuck-targetting assembler"
arch=('x86_64')
url="https://github.com/kspalaiologos/asmbf"
license=('MIT')
depends=()
makedepends=()
optdepends=()
source=("$pkgname-$pkgver::https://github.com/kspalaiologos/asmbf/archive/refs/tags/$pkgver.tar.gz")
sha256sums=("e0134790bbec33e72fee7a53d925b0e7f1dee373d1ed471ffc5f6231b1ebee87")

build() {
	cd "asmbf-${pkgver:1}"
	./configure --prefix=/usr --with-target=release
	make all
}

package() {
	cd "asmbf-${pkgver:1}"
	make DESTDIR="$pkgdir/" install
}