blob: 0736e90c2c5fa50bd27dfadde36fc82360c9af60 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Contributor: Michael Mason <ms13sp@gmail.com>
# Maintainer: Michael Mason <ms13sp@gmail.com>
pkgname=swish-e
pkgver=2.4.7
pkgrel=7
pkgdesc="Simple Web Indexing System for Humans - Enhanced"
url="http://www.swish-e.org/"
arch="all"
license="GPL"
depends="perl-html-parser perl-html-tagset perl-libwww"
makedepends="perl-dev"
install=
subpackages="$pkgname-dev $pkgname-doc"
source="http://www.swish-e.org/distribution/$pkgname-$pkgver.tar.gz"
_builddir="$srcdir/$pkgname-$pkgver"
prepare() {
cd "$_builddir"
update_config_sub || return 1
}
build() {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install
# Move SwishSpiderConfig.pl because spider.pl won't run without default settings
mv "$pkgdir"/usr/share/doc/swish-e/examples/prog-bin/SwishSpiderConfig.pl "$pkgdir"/usr/lib/swish-e/
rm "$pkgdir"/usr/lib/*.la
}
md5sums="736db7a65aed48bb3e2587c52833642d swish-e-2.4.7.tar.gz"
|