summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7c570416ebb144c9901994318dbcf6cd10550e7f (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
34
35
36
37
38
39
40
41
42
43
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# Maintainer: aureumapes <auruemapes@duck.com>
pkgname=candlelang-git
pkgver=1.2.1
pkgrel=1
pkgdesc="The latest git vcersion of Candlelang"
arch=("x86_64" "aarch64")
source=("$pkgname::git+https://gitlab.com/aureumapes/candle")
url="https://github.com/aureumapes/candle"
license=('MIT')
conflicts=('candle')
makedepends=('git' 'go>=1.21')
sha256sums=('SKIP')
validpgpkeys=()

pkgver() {
	cd $srcdir/$pkgname

	version=$(git describe --tags --abbrev=0 | sed "s/-/_/g")

	echo "${version}"
}

build() {
	cd $srcdir/$pkgname
	go generate
	go build
	cd highlight
	go build
	mv highlight cndlh
}

package() {
	cd $srcdir/$pkgname
	install -vDm751 -t $pkgdir/usr/bin candle
	install -vDm751 -t $pkgdir/usr/bin highlight/cndlh
	install -vDm444 -t $pkgdir/usr/share/man/man1 man/man1/*

}