2012-07-11 19:07:29 +00:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
|
|
|
all:
|
2016-06-29 02:39:23 +00:00
|
|
|
dh_prep
|
2012-07-11 19:07:29 +00:00
|
|
|
dh_installdirs
|
|
|
|
touch build_pe_modules.py
|
|
|
|
python3 build_pe_modules.py
|
|
|
|
chmod +x src/run.py
|
2020-02-21 14:02:30 +00:00
|
|
|
cp -R src/ "$(CURDIR)/debian/{pkgname}/usr/share/{execname}"
|
|
|
|
cp "$(CURDIR)/debian/{execname}.desktop" "$(CURDIR)/debian/{pkgname}/usr/share/applications"
|
2020-12-30 16:55:53 +00:00
|
|
|
mkdir -p "$(CURDIR)/debian/{pkgname}/usr/share/pixmaps"
|
2020-12-29 23:24:15 +00:00
|
|
|
ln -s "/usr/share/{execname}/dgse_logo_128.png" "$(CURDIR)/debian/{pkgname}/usr/share/pixmaps/{execname}.png"
|
2020-02-21 14:02:30 +00:00
|
|
|
ln -s "/usr/share/{execname}/run.py" "$(CURDIR)/debian/{pkgname}/usr/bin/{execname}"
|