X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=distro%2Farchbsd%2Fgit%2FPKGBUILD;fp=distro%2Farchbsd%2Fgit%2FPKGBUILD;h=0000000000000000000000000000000000000000;hp=f1ec819a65b17d0759d11d33dbdc8e9676d565e2;hb=644a80773147bdd3f67bc041ae95d550c128427a;hpb=724bca0eeca05a68900e3054e118904b6618dc7c diff --git a/distro/archbsd/git/PKGBUILD b/distro/archbsd/git/PKGBUILD deleted file mode 100644 index f1ec819..0000000 --- a/distro/archbsd/git/PKGBUILD +++ /dev/null @@ -1,55 +0,0 @@ -# Contributor: matthiaskrgr -# Contributor: Wolfgang Bumiller - -pkgname=gmqcc-git -pkgver=20131031 -pkgrel=1 -pkgdesc="An Improved Quake C Compiler" -arch=('i686' 'x86_64') -depends=() -conflicts=('gmqcc') -provides=('gmqcc=0.3.5') -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 - msg "Compiling done." - - install -dm755 ${pkgdir}/usr/share/licenses/gmqcc - install -m644 LICENSE ${pkgdir}/usr/share/licenses/gmqcc/LICENSE -}