odrick / free-tex-packer

Free texture packer
http://free-tex-packer.com/
MIT License
911 stars 168 forks source link

Build for Arch linux #18

Closed flamendless closed 5 years ago

flamendless commented 5 years ago

How to build this to work in arch Linux?

Sent from my HUAWEI GR5 2017 using FastHub

rtalon83 commented 5 years ago

Do you want to make the Electron app for Linux x64, no?

Right now, I'm looking this: https://www.electron.build/configuration/linux

flamendless commented 5 years ago

I tend to stay away from any Electron app.

Is the web version of this tool good?

odrick commented 5 years ago

Hello. You can build appimage executable, for example:

1 - install node.js 2 - git clone https://github.com/odrick/free-tex-packer.git 3 - cd free-tex-packer 4 - npm install 5 - npm run build-electron 6 - cd electron 7 - change build - linux - target to AppImage in package.json 8 - npm install 9 - npm run build 10 - look at dist/app folder ( FreeTexturePacker-x86_64.AppImage ) 11 - install appimage ( https://itsfoss.com/use-appimage-linux/ )

appimage added to latest release: https://github.com/odrick/free-tex-packer/releases/tag/v0.5.8

flamendless commented 5 years ago

Thanks!