gmqcc/distro/archbsd/release/PKGBUILD

39 lines
922 B
Text
Raw Normal View History

2013-01-27 12:09:09 +00:00
# Contributor: matthiaskrgr <matthiaskrgr _strange_curverd_character_ freedroid D0T org>
# Contributor: Wolfgang Bumiller <blub@speed.at>
pkgname=gmqcc
pkgver=0.3.5
2013-01-27 12:09:09 +00:00
pkgrel=1
pkgdesc="An Improved Quake C Compiler"
arch=('i686' 'x86_64')
depends=()
url="https://github.com/graphitemaster/gmqcc.git"
license=('MIT')
source=(gmqcc-$pkgver.zip::https://github.com/graphitemaster/gmqcc/zipball/$pkgver)
sha1sums=('69085478f48f04eefbd2a088c1bd8c266b59f952')
2013-01-27 12:09:09 +00:00
_gitname=graphitemaster-gmqcc-7f2b206/
2013-01-27 12:09:09 +00:00
build() {
msg "Starting compilation..."
cd "$srcdir"/"$_gitname"
msg "Compiling..."
gmake
}
check() {
cd "$srcdir"/"$_gitname"
gmake check
}
package() {
cd "$srcdir"/"$_gitname"
msg "Compiling and installing to pkgdir this time..."
2013-04-02 21:40:26 +00:00
gmake install DESTDIR=$pkgdir PREFIX=/usr
2013-01-27 12:09:09 +00:00
msg "Compiling done."
2013-04-02 21:40:26 +00:00
install -dm755 ${pkgdir}/usr/share/licenses/gmqcc
install -m644 LICENSE ${pkgdir}/usr/share/licenses/gmqcc/LICENSE
2013-01-27 12:09:09 +00:00
}