blob: 631e3e211cd15dda382f6b54fd4edb233c9fa1b5 (
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
|
# Maintainer: Hiroshi Hatake <cosmo0920.wp[at]gmail.com>
pkgname=pgroonga
pkgver=2.2.8
pkgrel=1
pkgdesc="Fast fulltext search on PostgreSQL."
arch=('i686' 'x86_64' 'armv7h' 'aarch64')
url="https://github.com/pgroonga/pgroonga"
license=('custom:PostgreSQL')
source=("http://packages.groonga.org/source/pgroonga/$pkgname-$pkgver.tar.gz")
depends=('groonga')
makedepends=('postgresql' 'clang' 'llvm')
build() {
cd $srcdir/$pkgname-$pkgver
make
}
package() {
cd $srcdir/$pkgname-$pkgver
make DESTDIR="$pkgdir" install
install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
echo "-------------------------------------------------------------"
echo "After install this package,"
echo "please execute following commands to make fully installation."
echo "-------------------------------------------------------------"
echo "sudo -u postgres -H psql --command 'CREATE DATABASE pgroonga_test'"
echo "sudo -u postgres -H psql -d pgroonga_test --command 'CREATE EXTENSION pgroonga'"
echo "-------------------------------------------------------------"
echo "*************************************************************"
echo "You need to upgrade EXTENSION pgroonga CASCADE, "
echo "In more detail, please refer to the PGroonga site's upgrading instructions:"
echo "http://pgroonga.github.io/upgrade/"
# Remove needless dotfiles
rm -rf "$pkgdir/.*"
}
sha1sums=('acd4abefaf736d444cf4cb1e7ccf449497ed52aa')
sha256sums=('6030cedede8045b42fef6428b6303b0cdc4e951a363b9098ceb1fefde1338f7c')
|