17 lines
682 B
Makefile
Executable file
17 lines
682 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
FIREFOX_ID := {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
|
|
EXTENSION_ID := tab-counter@daawesomep.addons.mozilla.org
|
|
|
|
%:
|
|
dh ${@}
|
|
|
|
override_dh_auto_install:
|
|
mkdir -p debian/webext-tab-counter/usr/share/webext
|
|
cp -a src debian/webext-tab-counter/usr/share/webext/tab-counter
|
|
cp -a icons debian/webext-tab-counter/usr/share/webext/tab-counter
|
|
cp -a manifest.firefox.json debian/webext-tab-counter/usr/share/webext/tab-counter/manifest.json
|
|
|
|
execute_before_dh_link:
|
|
mkdir -p debian/webext-tab-counter/usr/share/mozilla/extensions/${FIREFOX_ID}
|
|
ln -s /usr/share/webext/tab-counter debian/webext-tab-counter/usr/share/mozilla/extensions/${FIREFOX_ID}/${EXTENSION_ID}
|