blob: 30c787ddbe864af94989128dfbd28fcaada2da42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Maintainer: SanskritFritz (gmail)
pkgname=sitecopy
pkgver=0.16.6
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=('krb5')
source=("http://www.manyfish.co.uk/sitecopy/sitecopy-$pkgver.tar.gz")
md5sums=('b3aeb5a5f00af3db90b408e8c32a6c01')
build() {
cd "$pkgname-$pkgver"
./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"
}
|