]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Merge branch 'cooking' of github.com:graphitemaster/gmqcc into cooking
authorDale Weiler <killfieldengine@gmail.com>
Sun, 27 Jan 2013 12:56:43 +0000 (12:56 +0000)
committerDale Weiler <killfieldengine@gmail.com>
Sun, 27 Jan 2013 12:56:43 +0000 (12:56 +0000)
.gitignore
distro/arch/bsd-git/PKGBUILD [new file with mode: 0644]
distro/arch/bsd-release/PKGBUILD [new file with mode: 0644]

index 6e7e99db297d8aee61595edbe00eb50fadd00092..8ccf6a5aa127fe88c83f9faf22af1e1703ddc857 100644 (file)
@@ -11,4 +11,6 @@ gmqcc
 distro/arch/*
 !distro/arch/git/PKGBUILD
 !distro/arch/release/PKGBUILD
+!distro/arch/bsd-release/PKGBUILD
+!distro/arch/bsd-git/PKGBUILD
 !distro/arch/this/Makefile
diff --git a/distro/arch/bsd-git/PKGBUILD b/distro/arch/bsd-git/PKGBUILD
new file mode 100644 (file)
index 0000000..2144110
--- /dev/null
@@ -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
+}
diff --git a/distro/arch/bsd-release/PKGBUILD b/distro/arch/bsd-release/PKGBUILD
new file mode 100644 (file)
index 0000000..8c449c6
--- /dev/null
@@ -0,0 +1,38 @@
+# Contributor: matthiaskrgr <matthiaskrgr _strange_curverd_character_ freedroid D0T org>
+# Contributor: Wolfgang Bumiller <blub@speed.at>
+
+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
+       install -m644 LICENSE ${pkgdir}/usr/local/share/licenses/gmqcc/LICENSE
+}