blob: ce6541d0d9153c7815fa03e88e89d7fcb5f0cbea (
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
|
#!/usr/bin/make -f
export DH_VERBOSE = 1
#export PYBUILD_NAME = photocrop
#export PYBUILD_SYSTEM = custom
clean:
@
build:
@
binary:
mkdir -pm 0755 debian/photocrop
mkdir -pm 0755 debian/photocrop/usr/bin
mkdir -pm 0755 debian/photocrop/usr/share
mkdir -pm 0755 debian/photocrop/usr/share/photocrop
mkdir -pm 0755 debian/photocrop/usr/share/applications
cp src/photocrop.py debian/photocrop/usr/bin
cp data/clip.png debian/photocrop/usr/share/photocrop
cp data/IMG_6854.JPG debian/photocrop/usr/share/photocrop
cp data/photocrop.desktop debian/photocrop/usr/share/applications
dh_gencontrol
dh_builddeb
# dh $@ --with python3 --buildsystem=pybuild
# dh $@ --with python3
#override_dh_auto_configure:
# dh_auto_configure --
|