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