blob: 18100be2c4fbf8288982b84dadc06d6dd0614261 (
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
|
# 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=candle1.1.1
pkgrel=1
pkgdesc="The latest git vcersion of Candlelang"
arch=("x86_64" "aarch64")
source=("$pkgname::git+https://github.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
}
package() {
cd $srcdir/$pkgname
install -vDm777 -t $pkgdir/usr/bin candle
}
|