blob: 7de2a331a5969408388696d872c4d2cfc03aa0de (
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
|
DEVBIN=../../bin
PKG=postgresql-config
REPACKAGEDEBIANOPTS=
INS= ../install
INSSTG= $(INS)/stage
INSCOM= $(INS)/common
all:
clean-stage:
rm -rf $(INSSTG)
clean-common:
rm -rf $(INSCOM)
clean:
rm -rf $(INS)
build:
stage: clean-stage clean-common
mkdir -p $(INS)
find stage ! -name makefile ! -name '*~' | cpio -pudmv $(INS)
find common ! -name makefile ! -name '*~' | cpio -pudmv $(INS)
chmod -R a+x $(INS)/stage/opt/app/postgresql-config/etc/*
cp -p repackage.* $(INS)
debian: stage
repackage -b debian -d $(INS) -u
repackage -b debian -d $(INS) -u -B LATEST
@echo debian built
upload-javadocs:
@echo nothing to do here
|