I run into a problem trying to build a package.
Everything is OK except adding icon - I added this to rules
file
mkdir -p debian/fbmessenger/usr/share/icons/hicolor/48x48/apps
cp debian/fbmessenger-facebook.png debian/fbmessenger/usr/share/icons/hicolor/48x48/apps/
And while compiling it gives this annoying error:
mkdir -p debian/fbmessenger/usr/share/icons/hicolor/48x48/apps
cp debian/fbmessenger-facebook.png debian/fbmessenger/usr/share/icons/hicolor/48x48/apps/
cp: cannot stat `debian/fbmessenger-facebook.png': No such file or directory
It fails to copy icon from debian/ directory but the icon is actually here. Any hints how to resolve this error will be great. Cheers, Fih
I found out that there is already an icon with the source code and I slightly modified
rules
file to make use of this icon instead of my own one. Moreoverdebuild -us -uc
seem to build that package without problems.