blob: 66eee29db4aaf08c9806e8fe8b888b550c72f004 (
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
|
# Maintainer: Xnopyt <billy@xnopyt.info>
pkgname="gmad-git"
pkgver=v1.1
pkgrel=2
pkgdesc="Garry's Mod Addon Creator and Extractor"
arch=( "x86_64" )
url="https://github.com/garrynewman/gmad"
makedepends=( "premake" "git" )
provides=( "gmad" )
source=("gmad::git+https://github.com/Facepunch/gmad.git#branch=master"
"bootil::git+https://github.com/garrynewman/bootil.git#branch=master")
md5sums=("SKIP"
"SKIP")
build() {
cd "$srcdir/bootil/projects"
premake5 gmake
make config=release_x64
cd "$srcdir/gmad"
premake5 --outdir="bin/" --bootil_lib="$srcdir/bootil/projects/release_x64_linux" --bootil_inc="$srcdir/bootil/include/" gmake
make
}
package() {
install -Dm755 $srcdir/gmad/bin/gmad_linux "$pkgdir"/usr/bin/gmad
}
|