When I try to compile a Notification Center widget for iOS 5 using

cd <name>
make package

then I get the following error:

make package requires dpkg-deb.
make: *** [package] Error 1

But I have installed dpkg-deb using

sudo su
<enter your password>
cd /bin
curl http://debmaker-osx.googlecode.com/svn-history/r5/trunk/dpkg-deb > dpkg-deb

And I have navigated to the /bin directory and the dpkg-deb file exists in the folder. What can I do to make it work? I have followed this tutorial on how to install theos, dpkg-deb and how to create a WeeAppPlugin, I'm just stuck at compiling the bundle... http://weeplugins.com/blog/?p=1

Update: It seems like I cannot access the /bin/dpkg-deb file if I run this command

cd /bin/dpkg-deb

I get an error that I don't have permission to access the file. Is it possible to maybe move the file to another folder so that i can access it?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

You can try to do "sudo make package". This will give you superuser permissions.

link|improve this answer
No, it still doesn't work... – Maxner Oct 12 '11 at 14:14
I guess the problem is not in the permissions.You can try installing dpkg on your mac. macports.org/ports.php?by=name&substr=dpkg. – v01d Oct 12 '11 at 15:07
cheers, mac ports helped. But now, i get the following error: /bin/sh: /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/g++-4.2: No such file or directory I just have iOS 5 sdk installed not 4.2! – Maxner Oct 12 '11 at 15:28
you can try installing the xcode tools for this version and after that use "sudo gcc_select 4.2". – v01d Oct 13 '11 at 8:46
I already fixed the problem. It seems like with the new Xcode the files have been renamed, there was a file called somethingg++-4.2 and i just dublicated it and named it g++-4.2. Now everything works fine! Thank you. – Maxner Oct 13 '11 at 16:21
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.