summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: aa2b1dbdf38d8d5fd3990df395e17c4f277656e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: marrcaburgh
pkgver=1.5
pkgrel=3
pkgname=godot-uid-fixer-git
pkgdesc='A program designed to fix the UID error in godot engine.'
arch=('x86_64')
makedepends=('git' 'gcc')
source=("git+https://github.com/marrcaburgh/godot-uid-fixer.git")
sha256sums=('SKIP')

build() {
    binname=godot-uid-fixer
    echo "Build ${pkgname}..."
    cd $binname
    cmake .
    make
}

package() {
    binname=godot-uid-fixer
    install -Dm755 ${srcdir}/godot-uid-fixer/$binname "${pkgdir}/usr/bin/${binname}"
}