summaryrefslogtreecommitdiff
path: root/pcr/bash-dynamic-completion/PKGBUILD
diff options
context:
space:
mode:
authoraurelien <aurelien@xload.io>2014-05-30 15:39:50 +0200
committeraurelien <aurelien@xload.io>2014-05-30 15:39:50 +0200
commit8e7731d4cbf47f3ec349eef842f1386b1616e3e2 (patch)
tree17a58a1f7fab4e3e7364dd85de026c6e089d3414 /pcr/bash-dynamic-completion/PKGBUILD
parent7bab1c0a4b638b4aa966d22a996362b07681bc22 (diff)
bash-dynamic-completion
Diffstat (limited to 'pcr/bash-dynamic-completion/PKGBUILD')
-rw-r--r--pcr/bash-dynamic-completion/PKGBUILD17
1 files changed, 17 insertions, 0 deletions
diff --git a/pcr/bash-dynamic-completion/PKGBUILD b/pcr/bash-dynamic-completion/PKGBUILD
new file mode 100644
index 000000000..e2878f04c
--- /dev/null
+++ b/pcr/bash-dynamic-completion/PKGBUILD
@@ -0,0 +1,17 @@
+pkgname='bash-dynamic-completion'
+pkgver=1
+pkgrel=1
+pkgdesc="A simple script that automatically load any of those completion functions when it is requested for the first time"
+arch=( 'i686' 'x86_64' )
+url="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=467231"
+license=( 'GPL' )
+depends=( 'bash' 'bash-completion' 'cron' )
+source=( 'dynamic_completion.sh' )
+md5sums=( 'b3659f84162ebda9e0444273b2d0bd8a' )
+install=dynamic_completion.install
+
+build() {
+ mkdir ${pkgdir}/etc
+ mkdir ${pkgdir}/etc/cron.monthly
+ cp ${srcdir}/dynamic_completion.sh ${pkgdir}/etc/cron.monthly/
+}