mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-18 14:21:36 +00:00
importing bsd-git/PKGBUILD
This commit is contained in:
parent
95e8140555
commit
370b54251e
1 changed files with 55 additions and 0 deletions
55
distro/arch/bsd-git/PKGBUILD
Normal file
55
distro/arch/bsd-git/PKGBUILD
Normal file
|
@ -0,0 +1,55 @@
|
|||
# Contributor: matthiaskrgr <matthiaskrgr _strange_curverd_character_ freedroid D0T org>
|
||||
# Contributor: Wolfgang Bumiller <blub@speed.at>
|
||||
|
||||
pkgname=gmqcc-git
|
||||
pkgver=20130127
|
||||
pkgrel=1
|
||||
pkgdesc="An Improved Quake C Compiler"
|
||||
arch=('i686' 'x86_64')
|
||||
depends=()
|
||||
conflicts=('gmqcc')
|
||||
provides=('gmqcc=0.2.4')
|
||||
makedepends=('git')
|
||||
url="https://github.com/graphitemaster/gmqcc.git"
|
||||
license=('MIT')
|
||||
|
||||
_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..."
|
||||
gmake
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$srcdir"/"$_gitname"
|
||||
gmake check
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir"/"$_gitname"
|
||||
msg "Compiling and installing to pkgdir this time..."
|
||||
gmake install DESTDIR=$pkgdir PREFIX=/usr/local MANDIR=/usr/local/man
|
||||
msg "Compiling done."
|
||||
|
||||
install -dm755 ${pkgdir}/usr/local/share/licenses/gmqcc
|
||||
install -m644 LICENSE ${pkgdir}/usr/local/share/licenses/gmqcc/LICENSE
|
||||
}
|
Loading…
Reference in a new issue