summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d174396a3c84708d8c19fc9225d1fbf1069a31d9 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# Maintainer: Daichi Shinozaki <dsdseg@gmail.com>
# Note: 
#  This package is almost same as ArchLinux's official
#  PKGBUILD of Postgresql.
#  https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/postgresql
#  Just changed the name and other minor things. 
pkgbase=pipelinedb
pkgname=('pipelinedb' 'pipelinedb-libs')
pkgver=0.9.3
pkgrel=1
pkgdesc="The streaming SQL database"
arch=('i686' 'x86_64')
url="https://www.pipelinedb.com"
license=('custom')
depends=('openssl')
makedepends=('check' 'readline' 'tcl' 'jade')
checkdepends=()
provides=('postgresql')
optdepends=()
backup=()
options=()
conflicts=('postgresql' 'postgresql-libs')
install=pipelinedb.install
source=("https://github.com/pipelinedb/pipelinedb/archive/$pkgver.tar.gz"
	pipelinedb-check-db-dir
    pipelinedb-run-socket.patch
	pipelinedb.pam 
	pipelinedb.logrotate
	pipelinedb.service 
	pipelinedb.install)
	
md5sums=('51650fe51d0c39e93cf3e85998ac0ea6'
         '937eec7aabce171bc9d1eab65c560bcb'
         '75c579eed03ffb2312631f0b649175b4'
         '96f82c38f3f540b53f3e5144900acf17'
         'd28e443f9f65a5712c52018b84e27137'
         'b2ef9bd989cd1b9726f63fa4b8eaff9c'
         'c7f474fd3e41caa7532df3991b93f609')

build() {
	cd "pipelinedb-$pkgver"
	
	patch -Np1 < ../pipelinedb-run-socket.patch
	
	./configure CFLAGS='-O2' \
	--prefix=/usr \
	--mandir=/usr/share/man \
	--datadir=/usr/share/pipelinedb \
	--sysconfdir=/etc \
	--with-gssapi \
	--with-libxml \
	--with-openssl \
	--with-perl \
	--with-python PYTHON=/usr/bin/python2 \
	--with-tcl \
        --with-pam \
	--with-system-tzdata=/usr/share/zoneinfo \
	--with-uuid=e2fs \
	--enable-nls \
	--enable-thread-safety
	
    make
#   Commented out. Could not build because of the sgml processing error.
#	make world
}

package_pipelinedb-libs() {
  pkgdesc="Libraries for use with pipelinedb"
  depends=('krb5' 'openssl>=1.0.0' 'readline>=6.0')
  provides=('pipelinedb-client')
  conflicts=('pipelinedb-client')

  cd "${srcdir}/pipelinedb-${pkgver}"

  # install license
  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/pipelinedb-libs/LICENSE"

  # install libs and non-server binaries
  for dir in src/interfaces src/bin/pg_config src/bin/pg_dump src/bin/psql src/bin/scripts; do
    make -C ${dir} DESTDIR="${pkgdir}" install
  done

  #for util in pg_config pg_dump pg_dumpall pg_restore psql clusterdb createdb createlang createuser dropdb droplang dropuser pg_isready reindexdb vacuumdb; do
  #  install -D -m644 doc/src/sgml/man1/${util}.1 "${pkgdir}"/usr/share/man/man1/${util}.1
  #done

  cd src/include

  mkdir -p "${pkgdir}"/usr/include/{libpq,pipelinedb/internal/libpq}

  # these headers are needed by the public headers of the interfaces
  install -m644 pg_config.h "${pkgdir}/usr/include/"
  install -m644 pg_config_os.h "${pkgdir}/usr/include/"
  install -m644 pg_config_ext.h "${pkgdir}/usr/include/"
  install -m644 postgres_ext.h "${pkgdir}/usr/include/"
  install -m644 libpq/libpq-fs.h "${pkgdir}/usr/include/libpq/"
  install -m644 pg_config_manual.h "${pkgdir}/usr/include/"

  # these headers are needed by the not-so-public headers of the interfaces
  install -m644 c.h "${pkgdir}/usr/include/pipelinedb/internal/"
  install -m644 port.h "${pkgdir}/usr/include/pipelinedb/internal/"
  install -m644 postgres_fe.h "${pkgdir}/usr/include/pipelinedb/internal/"
  install -m644 libpq/pqcomm.h "${pkgdir}/usr/include/pipelinedb/internal/libpq/"
}

package_pipelinedb() {
  pkgdesc="A sophisticated object-relational DBMS"
  backup=('etc/pam.d/pipelinedb' 'etc/logrotate.d/pipelinedb')
  depends=("pipelinedb-libs>=${pkgver}" 'krb5' 'libxml2'
	   'readline>=6.0' 'openssl>=1.0.0' 'pam')
  optdepends=('python2: for PL/Python support'
              'perl: for PL/Perl support'
	      'tcl: for PL/Tcl support')
  options=('staticlibs')
  install=pipelinedb.install
  
  cd "${srcdir}/pipelinedb-${pkgver}"
  
  # install
  make DESTDIR="${pkgdir}" install
  make -C contrib DESTDIR="${pkgdir}" install
  #make -C doc/src/sgml DESTDIR="${pkgdir}" install-man
  
  # we don't want these, they are in the -libs package
  for dir in src/interfaces src/bin/pg_config src/bin/pg_dump src/bin/psql src/bin/scripts; do
    make -C ${dir} DESTDIR="${pkgdir}" uninstall
  done
  #for util in pg_config pg_dump pg_dumpall pg_restore psql clusterdb createdb createlang createuser dropdb droplang dropuser pg_isready reindexdb vacuumdb; do
  #  rm "${pkgdir}"/usr/share/man/man1/${util}.1
  #done
  
  # install license
  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgbase}/LICENSE"

  # clean up unneeded installed items
  rm -rf "${pkgdir}/usr/include/pipelinedb/internal"
  rm -rf "${pkgdir}/usr/include/libpq"
  find "${pkgdir}/usr/include" -maxdepth 1 -type f -execdir rm {} +
#  rmdir "${pkgdir}/usr/share/doc/pipelinedb/html"
  
  install -D -m644 "${srcdir}/pipelinedb.service" \
          "${pkgdir}/usr/lib/systemd/system/pipelinedb.service"
  install -D -m755 "${srcdir}/pipelinedb-check-db-dir" \
	  "${pkgdir}/usr/bin/pipelinedb-check-db-dir"
  
  install -D -m644 "${srcdir}/pipelinedb.pam" \
	  "${pkgdir}/etc/pam.d/pipelinedb"
  
  install -D -m644 "${srcdir}/pipelinedb.logrotate" \
	  "${pkgdir}/etc/logrotate.d/pipelinedb"
}