Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error in make install #19

Closed
vimes666 opened this issue Nov 19, 2020 · 5 comments
Closed

Error in make install #19

vimes666 opened this issue Nov 19, 2020 · 5 comments

Comments

@vimes666
Copy link

I am trying to install Hypnotix from source.
I downloaded it, extracted it, went to the hypnotix-master directory and typed:
make
It gave a warning about languages with a hyphon in it. As it was just a warning I typed:
sudo make install
And this gave me the following error:
make: *** No rule to make target 'install'. Stop.
This often happens when you forget to do a ./configure, but there is no configure in hypnotix-master.
I tried it on mint mate 20 and lmde4 both with the same result.

What am I doing wrong?

@clefebvre
Copy link
Member

clefebvre commented Nov 19, 2020

If you're in Mint, use mint-build directly:

apt install mint-dev-tools
mint-build -i -g hypnotix

Or if you prefer the manual way:

apt install dpkg-dev git
git clone https://github.com/linuxmint/hypnotix.git
cd hypnotix
dpkg-buildpackage
sudo dpkg -i ../hypnotix*.deb

@vimes666
Copy link
Author

Thanks Clem for the quick response. I used the first method and it worked as a treat :)
I like this project, thanks again.

@ItzSwirlz
Copy link
Contributor

There is no make install task. It's just 'make', and essentially a manual install, like the Python nemo-extensions. There is nothing to compile or really do.

Now you could generate the desktop files but it requires a mint package (which I'm trying to see if I can get around that through my repo cinnamon-dev-tools to include stuff like mintcommon, but not have it be mint-specific).

You could add a make install task-which wouldn't be as annoying and would make the Debian packaging easier.

Feel free to open a PR if you wish.

@vimes666
Copy link
Author

Thanks @ItzSwirlz but Clem already solved it for me.

@eggplants
Copy link

On Ubuntu 20, it works:

mkdir build_hypno && cd $_
git clone https://github.com/linuxmint/hypnotix.git --depth 1
cd hypnotix
dpkg-buildpackage -uc -us # avoid gpg error  
sudo dpkg -i ../hypnotix*.deb
cd ../../ && rm -rf build_hypno

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants