Pages:
Author

Topic: Compiling Mac Clients for ANY Alt Coin, Your Choice! - page 2. (Read 14318 times)

newbie
Activity: 39
Merit: 0
Hello All,

Can someone compile a Mac wallet for LiteBar?
https://github.com/rspublishing/litebar

(I will donate 15 LiteBar for this Mac wallet Smiley



full member
Activity: 134
Merit: 100
As mentioned above, script is not really necessary (unless you want to template additional content into the DMG).  The quick-n-easy method is:
Code:
macdeployqt -dmg
But glad I could help!
full member
Activity: 132
Merit: 100
CaptEmulation. That script did the trick. Thank You!

Entropycoin wallet now available!
http://entropycoins.com/Content/Entropycoin-Qt-mac.zip
hero member
Activity: 798
Merit: 500
can anyone take a look at this and see what they suggest i do for this error ?
src/scrypt-x86_64.S:178:9: error: invalid alignment value
 .align 32
        ^
[...]
make: *** [build/scrypt-x86_64.o] Error 1

Hi MobGod,

to fix that issue, you have to convert the assembler macros of scrypt-x86_64.S to C preprocessor ones;  then add -pthread -no-integrated-as to the qmake cflags. That'll fix the issue.  Use this script: https://github.com/iongchun/cpuminer/blob/cpumine/nomacro.pl

1. convert assembler macros
Code:
sudo perl nomacro.pl scrypt-x86_64.S

2. add -no-integrated-as to the macx qmake cflags in the qmake project file.
Code:
macx:QMAKE_CFLAGS_THREAD += -pthread -no-integrated-as


You need to run macdeployqt on the .app in order to package the libraries and frameworks within the .app.  As compiled, the application will point to the libraries and frameworks wherever they are on the developers machine.  The script I posted above will run this as well as package the resulting deployed app into a DMG image.

I looked, but I did not see a github repo anywhere for AppleByte.

Hi CaptEmulation, the built in dmg flag:
Code:
macdeployqt -dmg

does the same as your script above Wink
full member
Activity: 134
Merit: 100
You need to run macdeployqt on the .app in order to package the libraries and frameworks within the .app.  As compiled, the application will point to the libraries and frameworks wherever they are on the developers machine.  The script I posted above will run this as well as package the resulting deployed app into a DMG image.

I looked, but I did not see a github repo anywhere for AppleByte.
legendary
Activity: 1156
Merit: 1000
I am the lead of a new altcoin team, AppleBytes.

Anyone interested in helping on the MAC wallet?

Payment will be made in Bitcoin.

I compiled the MAC wallet and it runs on my MAC, but not other peoples, not sure what the issue is.

Some details here: Announce Thread


full member
Activity: 134
Merit: 100
I don't have Mavericks so I can't test, but you might want to try and compile the wallet with Qt 5.2-- which AFAIK has better Mavericks support.
full member
Activity: 132
Merit: 100

pcmerc I would be extremely grateful if someone could compile Entropycoin - www.entropycoins.com

https://github.com/etcdev/EntropyCoins.git

If you want to sync after compiling:
rpcport=7552
server=1
gen=0
addnode=70.112.59.90

There is also a human mineable HTML5 game I built. Going to add a ton of coins once I can get mac wallet going so everyone can participate.
http://entropycoins.com/game

I have successfully compiled and run but can't deploy. I ran the CaptEmulation script after a successful build but unfortunately get - You can't open the application "Entropycoin-Qt" because it may be damaged or incomplete when run on Mavericks. I just updated git source with the makefile.osx and .pro file I've been using on Snow Leopard.

Will give coins. Thank you!
full member
Activity: 134
Merit: 100
For anyone who can get as far as successfully building a Mac wallet, here is a script I wrote to convert a release build into a DMG image (see below).

If you are building abccoin-Qt.app, you would type './makeImg.sh abccoin-Qt' and this script will take care of the rest!  The disk image will be in the output directory

Code:
#!/bin/sh

function createDmg {
  NAME=$1
  
  sudo macdeployqt ${NAME}.app
  sudo chown -R jdean ${NAME}.app/Contents/Frameworks/*
  mkdir -p ${NAME}
  [ -d ${NAME}/${NAME}.app ] &&  rm -rf ${NAME}/${NAME}.app
  cp -r ${NAME}.app ${NAME}/
  rm tmp_${NAME}.dmg
  hdiutil create tmp_${NAME}.dmg -srcfolder ${NAME}/
  mkdir -p output
  rm -rf output/*
  hdiutil convert -format UDZO -o output/${NAME}.dmg tmp_${NAME}.dmg
}

createDmg $1
full member
Activity: 210
Merit: 100
What other coins need OSX wallets? Please provide a list & I'll build them all.


pcmerc~
full member
Activity: 210
Merit: 100
Orobit OSX wallet built


http://pcmerc.com/files/Orobit-Qt.dmg


You will need to supply the orobit.conf in the proper location for this to sync.

rpcuser=orobitrpc
rpcpassword=whatthefeck
rpcallow=*
gen=0
addnode=188.226.153.225
addnode=128.199.241.36
addnode=70.80.98.33
addnode=77.123.224.6
addnode=85.131.246.195
addnode=193.189.187.250
addnode=188.226.144.218
addnode=178.33.32.136
addnode=188.230.177.62
addnode=85.25.196.154


ORO: 13NpiuF43BY26ao1CfjPFpyh3ghGNZTYVe
LTC: Le9cJ2cRVYZ7sx7829gTC4DACU8hMLuzHe
BTC: 13wKPZZ83AE22eEYKXoVBQWx3QaPJYq67a
full member
Activity: 210
Merit: 100
Starcoin OSX wallet

http://pcmerc.com/files/starcoin-qt.dmg










Donations welcome Cheesy

LTC: Le9cJ2cRVYZ7sx7829gTC4DACU8hMLuzHe
BTC: 13wKPZZ83AE22eEYKXoVBQWx3QaPJYq67a
newbie
Activity: 63
Merit: 0
STLcoin needs a mac version
sr. member
Activity: 456
Merit: 250
Hi MaxPower I sent you a PM with my emails, I need a mac wallet for my coin that is about to launch. 

Thanks

PM'd you.
member
Activity: 71
Merit: 10
Hi MaxPower I sent you a PM with my emails, I need a mac wallet for my coin that is about to launch. 

Thanks
full member
Activity: 134
Merit: 100
I guess I'm the new Mac wallet build guy.  Please PM me the github repository for your Mac wallet build needs.  I can compile 64bit Mac OS X 10.8+ compatible wallets and will create a PR against your repo of any change necessary to build.
newbie
Activity: 56
Merit: 0
same here i need mine doe before launch if anyone can help id really appreciate it
newbie
Activity: 18
Merit: 0
I noticed no one has posted here for awhile and the OP hasn't been logged on in accouple weeks, so if anyone could please help me with a mac wallet PM me please!
Thank you
newbie
Activity: 18
Merit: 0
Really need a mac wallet for Platinum PT. Pleeeease.
QQ
newbie
Activity: 16
Merit: 0
Can you make one for microCoin? https://github.com/microcoinsource/microcoin
I tried but I can't fix the ASM part (similar to yacoin)
Pages:
Jump to: