summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaroslav Lichtblau2014-11-28 20:17:14 +0100
committerJaroslav Lichtblau2014-11-28 20:17:14 +0100
commit3a6e049a0d1e37506ceb113fef4027045381aa6f (patch)
tree8c21ffe604ca71962baccbe9a4f3d0925697ca4b
downloadaur-3a6e049a0d1e37506ceb113fef4027045381aa6f.tar.gz
Initial PKGBUILD status as of 28.11.2014
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD19
2 files changed, 33 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..5c68b0a145a8
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = fortune-mod-de
+ pkgdesc = A collection of German fortune cookie files
+ pkgver = 1.0
+ pkgrel = 2
+ url = http://www.mabelsoft.org/fortune_de_utf8.htm
+ arch = i686
+ arch = x86_64
+ license = GPL2
+ depends = fortune-mod
+ source = http://www.mabelsoft.org/pub/fortune_deutsch_utf8.tgz
+ md5sums = d603b87a3a593ae333bd48f646332528
+
+pkgname = fortune-mod-de
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..4ed56a28a6a1
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,19 @@
+# Contributor: rabyte <rabyte__gmail>
+
+pkgname=fortune-mod-de
+pkgver=1.0
+pkgrel=2
+pkgdesc="A collection of German fortune cookie files"
+arch=('i686' 'x86_64')
+url="http://www.mabelsoft.org/fortune_de_utf8.htm"
+license=('GPL2')
+depends=('fortune-mod')
+source=(http://www.mabelsoft.org/pub/fortune_deutsch_utf8.tgz)
+md5sums=('d603b87a3a593ae333bd48f646332528')
+
+build() {
+ cd $pkgdir
+
+ mkdir -p usr/share
+ cp -rf $srcdir/f/ usr/share/fortune/
+}