From 03f364a944e83c86ff42449b6cf7547f27f63c30 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Sun, 27 Jan 2013 13:09:09 +0100 Subject: [PATCH] importing ArchBSD release PKGBUILD --- distro/arch/bsd-release/PKGBUILD | 38 ++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 distro/arch/bsd-release/PKGBUILD diff --git a/distro/arch/bsd-release/PKGBUILD b/distro/arch/bsd-release/PKGBUILD new file mode 100644 index 0000000..91585c1 --- /dev/null +++ b/distro/arch/bsd-release/PKGBUILD @@ -0,0 +1,38 @@ +# Contributor: matthiaskrgr +# Contributor: Wolfgang Bumiller + +pkgname=gmqcc +pkgver=0.2.2 +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=('8cd91dc13f70cd9d3767602bf3eb47a1906d9353') + +_gitname=graphitemaster-gmqcc-de24486/ + +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..." + gmake install DESTDIR=$pkgdir PREFIX=/usr/local MANDIR=/usr/local/man + msg "Compiling done." + + install -dm755 ${pkgdir}/usr/local/share/licenses/gmqcc/LICENSE + install -m644 LICENSE ${pkgdir}/usr/local/share/licenses/gmqcc/LICENSE +} -- 2.39.2