summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authormorealaz2015-07-09 19:12:41 +0430
committermorealaz2015-07-09 19:12:41 +0430
commit3cf769445fed7744aca16a03b2318123635e8acb (patch)
tree11005184d818d42d2942f13a5e1004b2afb3f4d5
downloadaur-svg-tiny-docs.tar.gz
Initial import
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD18
2 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..66a6dd01ed54
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = svg-tiny-docs
+ pkgdesc = Set of HTML documentation for Scalable Vector Graphics (SVG) Tiny 1.2
+ pkgver = 1.2
+ pkgrel = 1
+ url = http://www.w3.org/TR/SVGTiny12/
+ arch = any
+ license = GPL
+ options = docs
+ source = http://www.w3.org/TR/SVGTiny12/REC-SVGTiny12-20081222.zip
+ md5sums = 4904f7e3e644de830009ae2deb04d158
+
+pkgname = svg-tiny-docs
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..dc0e128b11e9
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Maintainer: Mohammadreza Abdollahzadeh <morealaz@gmail.com>
+
+pkgname=svg-tiny-docs
+pkgver=1.2
+pkgrel=1
+pkgdesc="Set of HTML documentation for Scalable Vector Graphics (SVG) Tiny 1.2"
+arch=('any')
+url="http://www.w3.org/TR/SVGTiny12/"
+license=('GPL')
+options=('docs')
+source=('http://www.w3.org/TR/SVGTiny12/REC-SVGTiny12-20081222.zip')
+md5sums=('4904f7e3e644de830009ae2deb04d158')
+
+package(){
+ install -d ${pkgdir}/usr/share/doc/svg-tiny
+ cp -a ${srcdir}/REC-SVGTiny12-20081222/* \
+ ${pkgdir}/usr/share/doc/svg-tiny/
+}