summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRhinoceros2015-08-14 10:01:26 +1000
committerRhinoceros2015-08-14 10:01:26 +1000
commitf2640c56d8fe088b019efa36a02ebb44500fb0e6 (patch)
treeff42fe493cf6324e6929ca17220cccd73c8a143a
downloadaur-f2640c56d8fe088b019efa36a02ebb44500fb0e6.tar.gz
Initial commit of 1.3-2
* Originally submitted by Alfredo Palhares <masterkorp@gmail.com>
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD23
-rw-r--r--texlive-gantt.install16
3 files changed, 54 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..a758dc51412e
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+pkgbase = texlive-gantt
+ pkgdesc = A LaTeX package for drawing gantt plots using pgf/tikz
+ pkgver = 1.3
+ pkgrel = 2
+ url = http://www.martin-kumm.de/tex_gantt_package.php
+ install = texlive-gantt.install
+ arch = any
+ license = GPL
+ depends = texlive-core
+ depends = texlive-latexextra
+ source = http://www.martin-kumm.de/tex/gantt.sty
+ md5sums = e942191eb0024633155aa3188b4bbc06
+
+pkgname = texlive-gantt
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..c59ebbb74c44
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,23 @@
+# Plase submit changes to the git repository
+# https://github.com/masterkorp/pkgbuilds
+
+# Maintainer: Alfredo Palhares <masterkorp@gmail.com>
+# Contributor: Martin Kumm <pluto@ls68.de>
+
+pkgname=texlive-gantt
+pkgver=1.3
+pkgrel=2
+license=('GPL')
+depends=('texlive-core' 'texlive-latexextra')
+pkgdesc="A LaTeX package for drawing gantt plots using pgf/tikz"
+url="http://www.martin-kumm.de/tex_gantt_package.php"
+arch=('any')
+install=texlive-gantt.install
+source=(http://www.martin-kumm.de/tex/gantt.sty)
+md5sums=('e942191eb0024633155aa3188b4bbc06')
+
+build()
+{
+ mkdir -p $pkgdir/usr/share/texmf/tex/latex/gantt
+ cp $srcdir/gantt.sty $pkgdir/usr/share/texmf/tex/latex/gantt
+}
diff --git a/texlive-gantt.install b/texlive-gantt.install
new file mode 100644
index 000000000000..94fb556953ef
--- /dev/null
+++ b/texlive-gantt.install
@@ -0,0 +1,16 @@
+post_install() {
+ post_remove
+ echo "The file was installed in:"
+ kpsewhich gantt.sty
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ echo "Upgrading package database..."
+ mktexlsr
+}
+
+# vim:set ts=2 sw=2 et: