add aur deployment
This commit is contained in:
parent
1b3c67ba06
commit
15bd037c0c
2 changed files with 35 additions and 0 deletions
13
deployments/aur/.SRCINFO
Normal file
13
deployments/aur/.SRCINFO
Normal file
|
@ -0,0 +1,13 @@
|
|||
pkgbase = brainfucked
|
||||
pkgdesc = Brainfuck but with manual memory managment
|
||||
pkgver = 0.0.1
|
||||
pkgrel = 1
|
||||
url = https://g.tylerm.dev/tylermurphy534/brainfucked
|
||||
arch = x86_64
|
||||
arch = i686
|
||||
license = GPL3
|
||||
makedepends = gcc make
|
||||
source = brainfucked-0.0.1.tar.gz::https://f.tylerm.dev/source/brainfucked/brainfucked-0.0.1.tar.gz
|
||||
md5sums = SKIP
|
||||
|
||||
pkgname = brainfucked
|
22
deployments/aur/PKGBUILD
Normal file
22
deployments/aur/PKGBUILD
Normal file
|
@ -0,0 +1,22 @@
|
|||
# Maintainer: Tyler Murphy <tylermurphy534@gmail.com>
|
||||
pkgname=brainfucked
|
||||
pkgver=0.0.1
|
||||
pkgrel=1
|
||||
pkgdesc="Brainfuck but with manual memory management"
|
||||
arch=('x86_64' 'i686')
|
||||
url="https://g.tylerm.dev/tylermurphy534/brainfucked"
|
||||
license=('GPL3')
|
||||
makedepends=('gcc' 'make')
|
||||
depends=()
|
||||
source=("$pkgname-$pkgver.tar.gz::https://f.tylerm.dev/source/$pkgname/$pkgname-$pkgver.tar.gz")
|
||||
md5sums=('SKIP')
|
||||
|
||||
build() {
|
||||
cd "$srcdir"
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir"
|
||||
install -D --mode=755 --owner=root --group=root ./bin/app ${pkgdir}/usr/local/bin/brainfucked
|
||||
}
|
Loading…
Reference in a new issue