gmqcc/distro/arch/git/PKGBUILD

54 lines
1.1 KiB
Text
Raw Normal View History

2012-12-27 19:07:58 +00:00
# Contributor: matthiaskrgr <matthiaskrgr _strange_curverd_character_ freedroid D0T org>
pkgname=gmqcc-git
pkgver=20130127
2012-12-26 18:58:40 +00:00
pkgrel=1
pkgdesc="An Improved Quake C Compiler"
arch=('i686' 'x86_64')
depends=('glibc')
conflicts=('gmqcc')
provides=('gmqcc=0.2.4')
makedepends=('git')
2012-12-26 18:58:40 +00:00
url="https://github.com/graphitemaster/gmqcc.git"
2012-12-26 19:13:07 +00:00
license=('MIT')
2012-12-26 18:58:40 +00:00
_gitroot="git://github.com/graphitemaster/gmqcc.git"
_gitname="gmqcc"
build() {
cd $srcdir
msg "Connecting to the GIT server..."
if [[ -d $srcdir/$_gitname ]] ; then
cd $_gitname
msg "Removing build files..."
git clean -dfx
msg "Updating..."
git pull --no-tags
msg "The local files are updated."
else
msg "Cloning..."
git clone $_gitroot $_gitname --depth 1
msg "Clone done."
fi
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."
2012-12-26 19:07:51 +00:00
install -D LICENSE ${pkgdir}/usr/share/licenses/gmqcc/LICENSE
2012-12-26 18:58:40 +00:00
}