summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSanskritFritz2016-02-15 22:39:11 +0100
committerSanskritFritz2016-02-15 22:39:11 +0100
commit8b419cf0b452e59b29c6cee0d45f28209afc7f3c (patch)
tree592ba7562733dda88bc5eaa3d9e884ec2565da00
parent637489ecb217b472529b4a3f88f7a5662653d3fe (diff)
downloadaur-8b419cf0b452e59b29c6cee0d45f28209afc7f3c.tar.gz
Fixed doc dir location.
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD9
2 files changed, 9 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 12311340e594..5758d168f5b9 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,14 @@
+# Generated by mksrcinfo v8
+# Mon Feb 15 21:38:04 UTC 2016
pkgbase = sitecopy
pkgdesc = Easily maintain remote web sites to keep them synchronized with the local site with a single command.
pkgver = 0.16.6
- pkgrel = 1
+ pkgrel = 2
url = http://www.manyfish.co.uk/sitecopy/
arch = i686
arch = x86_64
license = GPL
+ depends = krb5
source = http://www.manyfish.co.uk/sitecopy/sitecopy-0.16.6.tar.gz
md5sums = b3aeb5a5f00af3db90b408e8c32a6c01
diff --git a/PKGBUILD b/PKGBUILD
index 4836e71f3977..30c787ddbe86 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,23 +2,24 @@
pkgname=sitecopy
pkgver=0.16.6
-pkgrel=1
+pkgrel=2
pkgdesc="Easily maintain remote web sites to keep them synchronized with the local site with a single command."
arch=('i686' 'x86_64')
url="http://www.manyfish.co.uk/sitecopy/"
license=('GPL')
-depends=()
-makedepends=()
+depends=('krb5')
source=("http://www.manyfish.co.uk/sitecopy/sitecopy-$pkgver.tar.gz")
md5sums=('b3aeb5a5f00af3db90b408e8c32a6c01')
build() {
cd "$pkgname-$pkgver"
- ./configure --prefix=/usr
+ ./configure --prefix="/usr"
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
+ # Somehow make messes up the docdir:
+ mv "$pkgdir/usr/doc" "$pkgdir/usr/share/doc"
}