LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   ./configure no such file or directory? (https://www.linuxquestions.org/questions/linux-software-2/configure-no-such-file-or-directory-914810/)

timmybobo 11-21-2011 07:35 PM

./configure no such file or directory?
 
I am trying to compile dekorator in KDE to install a theme I found on kde-look.org for Christmas:
http://kde-look.org/content/show.php...?content=70964
and the dekorator page:
http://kde-look.org/content/show.php...?content=87921
When I type in the ./configure command it says this:
bash: ./configure: No such file or directory
i KNOW that I am in the directory of the program. I extracted the tarball too.

evo2 11-21-2011 07:37 PM

Read the instructions on the page you linked to.
http://kde-look.org/content/show.php...?content=87921
I has explicit instructions. It uses cmake not autotools for building.

Evo2.

timmybobo 11-21-2011 07:53 PM

Quote:

Originally Posted by evo2 (Post 4530253)
Read the instructions on the page you linked to.
http://kde-look.org/content/show.php...?content=87921
I has explicit instructions. It uses cmake not autotools for building.

Evo2.

Oh. Thats a fail. Thanks.

opensourcewj 11-21-2011 08:52 PM

use automake tools to create configure.but first,you must create a configure.ac(or configure.in) by yourself.

MTK358 11-22-2011 07:44 AM

Quote:

Originally Posted by opensourcewj (Post 4530299)
use automake tools to create configure.but first,you must create a configure.ac(or configure.in) by yourself.

It was already said that KDE uses CMake, not autotools. This is how you would usually compile a package that uses CMake:

Code:

mkdir build
cd build
cmake ..
make

The reason for creating the separate directory is so that you don't clutter the source directories with build-related files.

opensourcewj 11-23-2011 06:39 AM

Quote:

Originally Posted by MTK358 (Post 4530644)
It was already said that KDE uses CMake, not autotools. This is how you would usually compile a package that uses CMake:

Code:

mkdir build
cd build
cmake ..
make

The reason for creating the separate directory is so that you don't clutter the source directories with build-related files.

You are right! cmake will better.


All times are GMT -5. The time now is 09:52 AM.