mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
d820fcc7b1
I got spaces in CURDIR for some reason
12 lines
369 B
Makefile
12 lines
369 B
Makefile
#!/usr/bin/make -f
|
|
|
|
all:
|
|
dh_prep
|
|
dh_installdirs
|
|
touch build_pe_modules.py
|
|
python3 build_pe_modules.py
|
|
chmod +x src/run.py
|
|
cp -R src/ "$(CURDIR)/debian/{pkgname}/usr/share/{execname}"
|
|
cp "$(CURDIR)/debian/{execname}.desktop" "$(CURDIR)/debian/{pkgname}/usr/share/applications"
|
|
ln -s "/usr/share/{execname}/run.py" "$(CURDIR)/debian/{pkgname}/usr/bin/{execname}"
|