mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
12 lines
325 B
Makefile
Executable File
12 lines
325 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
#export DH_VERBOSE=1
|
|
%:
|
|
dh $@ #--with python2
|
|
dh_override_auto_build:
|
|
python setup.py build #--install-layout=deb build
|
|
get-orig-source:
|
|
git clone https://github.com/saltstack/salt.git
|
|
mv salt salt-0.9.7
|
|
tar -zcvf salt_0.9.7.orig.tar.gz --exclude "debian*" --exclude-vcs salt-0.9.7
|
|
rm -rf salt-0.9.7
|