We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 811dec0 commit d57870aCopy full SHA for d57870a
master/debian/DEBIAN/control
@@ -0,0 +1,9 @@
1
+Source: postgresql-9.5-pathman
2
+Package: postgresql-9.5-pathman
3
+Version: 1.0
4
+Section: database
5
+Priority: optional
6
+Maintainer: Postgres Professional <[email protected]>
7
+Architecture: amd64
8
+Build-Depends: postgresql-common, gcc
9
+Description: The pg_pathman module provides optimized partitioning mechanism and functions to manage partitions.
master/debian/mkpkg
@@ -0,0 +1,14 @@
+#!/bin/sh -e
+
+PKGNAME=postgresql-9.5-pathman
+git clone --branch master --depth 1 https://.com/postgrespro/pg_pathman pg_pathman
+cd pg_pathman
+mkdir $PKGNAME
10
+USE_PGXS=1 make
11
+USE_PGXS=1 make DESTDIR=$PKGNAME install
12
+cp -r ../DEBIAN $PKGNAME
13
+fakeroot dpkg-deb --build $PKGNAME
14
+mv $PKGNAME.deb ..
0 commit comments