blob: 0f56d82ca5592a74dff6d757ff095702424beee8 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Contributor: Łukasz Jendrysik <scadu@yandex.com>
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=sphinx
pkgver=2.2.11
pkgrel=2
pkgdesc="Free open-source SQL full-text search engine"
url="http://www.sphinxsearch.com"
arch="all"
license="GPL-2.0-only"
makedepends="postgresql-dev mariadb-connector-c-dev unixodbc-dev expat-dev
re2-dev snowball-dev"
pkgusers="$pkgname"
pkggroups="$pkgname"
subpackages="$pkgname-doc $pkgname-php::noarch"
source="http://sphinxsearch.com/files/sphinx-$pkgver-release.tar.gz
sphinx.initd
sphinx.confd
sphinx-pagesize.patch
"
builddir="$srcdir"/$pkgname-$pkgver-release
build() {
./configure \
--prefix=/usr \
--exec-prefix=/usr \
--localstatedir=/var/lib/sphinx \
--sysconfdir=/etc/sphinx \
--docdir=/usr/share/doc/sphinx \
--mandir=/usr/share/man \
--with-pgsql \
--with-mysql \
--with-unixodbc \
--with-libexpat \
--with-iconv \
--with-libstemmer \
--with-syslog \
--with-re2 \
--enable-id64
make
}
package() {
make DESTDIR="$pkgdir" install
install -Dm755 "$srcdir"/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname
install -Dm755 "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname
chown -R $pkgusers:$pkggroups "$pkgdir"/var/lib/sphinx
}
php() {
pkgdesc="PHP api for sphinx search engine"
mkdir -p "$subpkgdir"/usr/share/php/$pkgname/api
for i in $(ls $builddir/api/*.php); do
mv $i "$subpkgdir"/usr/share/php/$pkgname/api ;
done
}
doc() {
default_doc;
mkdir -p "$subpkgdir"/usr/share/doc/$pkgname/misc
cp -r "$builddir"/misc/* "$subpkgdir"/usr/share/doc/$pkgname/misc
}
sha512sums="cf1a262a5b0fbf0bd2827ec6ec629edeaf709ce855a6e7b509b65342baaeb26c02717ca63f1578d32c83d21e2fd6d1e92dceb34660e6351b93cd96fd4e623689 sphinx-2.2.11-release.tar.gz
583601ff63e663099ae40048b8a216d0bc815a50a82370a42d3e7b923c90c650d58951636041ff9000141d897357767b7895a238a4edc49c328e46241b391350 sphinx.initd
8dbbb3b75bfbde5c6d2bee801df8c7a82650d3943dd667a4330cae473cbf18390aff5eb8d6aa6e5d69c4c995065d48289047b9166fa756c6015bf71f2b13a8f0 sphinx.confd
9563c5a926e5be30477781038ccf115a809a32bbcbc02c5b82e7985fca76185005968b5f0442772ec598b2ff17ef5c185582e24ae74775e5358abc88192345f2 sphinx-pagesize.patch"
|