summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO12
-rw-r--r--.gitignore7
-rw-r--r--PKGBUILD19
3 files changed, 38 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..2bf80ed84d80
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = chexquest3-wad
+ pkgdesc = Chex Quest 3 IWAD (game data)
+ pkgver = 1.4
+ pkgrel = 1
+ url = http://www.chucktropolis.com/gamers.htm
+ arch = any
+ license = custom
+ source = http://www.chucktropolis.com/downloads/ChexQuest3.zip
+ md5sums = e6e9bec61c1678ee0c883731dd43b60d
+
+pkgname = chexquest3-wad
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..5642e2f2619b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,7 @@
+/*.tar.gz
+/*.tar.bz2
+/*.tar.xz
+/*.zip
+/*.7z
+/pkg/
+/src/
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..508369f9b6b0
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,19 @@
+# Maintainer: Jan Cholasta <grubber at grubber cz>
+
+pkgname=chexquest3-wad
+pkgver=1.4
+pkgrel=1
+pkgdesc="Chex Quest 3 IWAD (game data)"
+arch=('any')
+url="http://www.chucktropolis.com/gamers.htm"
+license=('custom')
+source=(http://www.chucktropolis.com/downloads/ChexQuest3.zip)
+md5sums=('e6e9bec61c1678ee0c883731dd43b60d')
+
+package() {
+ cd "$srcdir"
+
+ install -Dm644 chex3.wad "$pkgdir/usr/share/doom/chex3.wad"
+
+ install -Dm644 "CQ3 ReadMe.txt" "$pkgdir/usr/share/licenses/$pkgname/CQ3 ReadMe.txt"
+}