Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rules « debian - github.com/SoftEtherVPN/SoftEtherVPN_Stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2233f002e147fa22379ff9b6eb4a4a543d3f1aa8 (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
#!/usr/bin/make -f

export DH_VERBOSE=1
CFLAGS := $(shell dpkg-buildflags --get CFLAGS)
LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS)

%:
	dh $@ 

override_dh_auto_configure: configure_config

override_dh_auto_clean:
	rm -fr Makefile* usr bin tmp src/bin/BuiltHamcoreFiles

override_dh_auto_install:
	patch -f < debian/makefile.patch
	mkdir -p usr/bin
	make install

configure_config:
	if [ $(shell uname -m) = 'x86_64' ]; then echo -e "1\n2\n" | ./configure; fi
	if [ $(shell uname -m) = 'i686' ]; then echo -e "1\n1\n" | ./configure; fi
	if [ $(shell uname -m) = 'armv6l' ]; then echo -e "1\n1\n" | ./configure; fi
	if [ $(shell uname -m) = 'armv5tel' ]; then echo -e "1\n1\n" | ./configure; fi
	if [ $(shell uname -m) = 'aarch64' ]; then echo -e "1\n2\n" | ./configure; fi
	if [ $(shell uname -m) = 'armv7l' ]; then echo -e "1\n1\n" | ./configure; fi