gmqcc/distro/archlinux/release/PKGBUILD

45 lines
1 KiB
Bash

# Contributor: matthiaskrgr <matthiaskrgr _strange_curverd_character_ freedroid D0T org>
# Contributor: Wolfgang Bumiller <blub@speed.at>
pkgname=gmqcc
pkgver=0.2.9
pkgrel=1
pkgdesc="An Improved Quake C Compiler"
arch=('i686' 'x86_64')
depends=('glibc')
url="https://github.com/graphitemaster/gmqcc.git"
license=('MIT')
source=(gmqcc-$pkgver.zip::https://github.com/graphitemaster/gmqcc/zipball/$pkgver
build_fix.patch) # commit 4c4aa5534c34
sha1sums=('adf972360c0b3d2f032a688952f6fb4715e4d45b'
'0b69dc8b786c7617fe17e6a5fd70407d1c4153d6')
_gitname=graphitemaster-gmqcc-219508e/
prepare() {
cd "$srcdir"/"$_gitname"
patch -p1 <../build_fix.patch
}
build() {
msg "Starting compilation..."
cd "$srcdir"/"$_gitname"
msg "Compiling..."
make
}
check() {
cd "$srcdir"/"$_gitname"
make check
}
package() {
cd "$srcdir"/"$_gitname"
msg "Compiling and installing to pkgdir this time..."
make install DESTDIR=$pkgdir PREFIX=/usr
msg "Compiling done."
install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/gmqcc/LICENSE
}