summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthurBorsboom2016-01-17 10:44:43 +0100
committerArthurBorsboom2016-01-17 10:44:43 +0100
commitf56f35e4276346f20e9f15034de9b73f8e50de44 (patch)
tree8f33536f2b674810d9ae1d8b5781956f45c55029
parent6263dfecccd3f6b5420cb17d9bc98a0a1a88ac4f (diff)
downloadaur-f56f35e4276346f20e9f15034de9b73f8e50de44.tar.gz
Fixed creation of symlinks as suggested by zman0900
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD8
2 files changed, 5 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3188a2beb788..631aa01a6f2e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = xhtml-docs
pkgdesc = Set of HTML documentation for XHTML 1.0 & 1.1
pkgver = 1.1
- pkgrel = 5
+ pkgrel = 6
url = http://www.w3.org/TR/xhtml11/
arch = any
license = GPL
diff --git a/PKGBUILD b/PKGBUILD
index abf98294876f..e3ff69b01723 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@
pkgname=xhtml-docs
pkgver=1.1
-pkgrel=5
+pkgrel=6
pkgdesc="Set of HTML documentation for XHTML 1.0 & 1.1"
arch=('any')
url="http://www.w3.org/"
@@ -36,7 +36,7 @@ package(){
rsync -av xhtml1-20020801/DTD/ "${pkgdir}/usr/share/doc/xhtml/DTD"
rsync -av xhtml11-20101123/DTD/ "${pkgdir}/usr/share/doc/xhtml/DTD"
rsync -av xhtml11-20101123/SCHEMA/ "${pkgdir}/usr/share/doc/xhtml/SCHEMA"
- ln -s "${pkgdir}/usr/share/doc/xhtml/DTD" "${pkgdir}/usr/share/doc/xhtml/1.0/DTD"
- ln -s "${pkgdir}/usr/share/doc/xhtml/DTD" "${pkgdir}/usr/share/doc/xhtml/1.1/DTD"
- ln -s "${pkgdir}/usr/share/doc/xhtml/SCHEMA" "${pkgdir}/usr/share/doc/xhtml/1.1/SCHEMA"
+ ln -s "/usr/share/doc/xhtml/DTD" "${pkgdir}/usr/share/doc/xhtml/1.0/DTD"
+ ln -s "/usr/share/doc/xhtml/DTD" "${pkgdir}/usr/share/doc/xhtml/1.1/DTD"
+ ln -s "/usr/share/doc/xhtml/SCHEMA" "${pkgdir}/usr/share/doc/xhtml/1.1/SCHEMA"
}