summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorVojtech Kral2015-06-16 21:58:42 +0200
committerVojtech Kral2015-06-16 21:58:58 +0200
commit16498f7d0588190d17f70aef530a3a02821c1488 (patch)
tree035630b4c3985fb59496e917176f6ef59c2c59a9
downloadaur-16498f7d0588190d17f70aef530a3a02821c1488.tar.gz
Initial
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD19
2 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..0bed11865ae2
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = akonadi-fake
+ pkgdesc = A fake empty akonadi package for those who don't want akonadi installed on their system
+ pkgver = 1000.0.0
+ pkgrel = 1
+ url = https://aur.archlinux.org/packages/akonadi-fake/
+ arch = any
+ license = GPL
+ provides = akonadi
+ replaces = akonadi
+
+pkgname = akonadi-fake
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..a9da4138a7b1
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,19 @@
+# Maintainer: Vojtech Kral <vojtech.kral at gmail>
+
+pkgname=akonadi-fake
+pkgver=1000.0.0
+pkgrel=1
+pkgdesc="A fake empty akonadi package for those who don't want akonadi installed on their system"
+arch=('any')
+url="https://aur.archlinux.org/packages/${pkgname}/"
+license=('GPL')
+
+provides=('akonadi')
+replaces=('akonadi')
+
+package()
+{
+ true
+}
+
+# vim:set ts=2 sw=2 et: