summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 99b185458fa4fa2221752b1326971b116f531d75 (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
26
27
28
29
30
31
32
33
# Maintainer: Wyatt Kinard wyattkinard@skiff.com
#
#Atention:
#I did not create crumb, nor do I maintain it (not a lot anyways), but I maintain the aur package
#
#
pkgname=crumb
pkgver=0.0.2
pkgrel=1
pkgdesc="Crumb is a high level, functional, interpreted, dynamically typed, general-purpose programming language, with a terse syntax, and a verbose standard library."
arch=('x86_64')
url="https://github.com/liam-ilan/crumb/tree/main/src"
license=('GPL')
makedepends=('gcc'
'coreutils')
source=('crumb::git+https://github.com/liam-ilan/crumb.git')
md5sums=('SKIP')
prepare() {
	cd "$srcdir"
#	patch -p1 -i "$srcdir/$pkgname-$pkgver.patch"
}

build() {
	cd crumb/src
	gcc *.c -Wall -lm -o crumb
}

package() {
	cd crumb/src
	mv crumb $pkgdir/usr/bin
}