2012-11-28 29 views
0

当我尝试安装任何压缩的文件到Linux的我从来没有可以,因为:如何从Linux上的压缩源构建ManDVD软件包?

  1. 当我执行./configure系统说bash: ./configure: No such file or directory

  2. 当我执行sudo ./configure系统说sudo: ./configure: command not found

  3. 最糟的是,当我执行make系统使说:*** No rule to make target '/usr/lib64/qt-3.3/mkspecs/default/qmake.conf', needed by 'Makefile'. Stop.

  4. 随着make install系统说make: *** No rule to make target '/usr/lib64/qt-3.3/mkspecs/default/qmake.conf', needed by 'Makefile'. Stop.

  5. 完成:我无法安装什么,是不是在仓库到我的系统。

注意:我使用Linux Mint XFCE 13(Maya)。

我该怎么办才能解决这个令人不快的问题?

+0

什么项目是你想使?你可以发布它的makefile吗?似乎在文件夹上没有'configure'脚本,并且可能读取'makefile',我们可以看到目标是什么。或者可能首先尝试'qmake',也许它有诀窍。 – mgarciaisaia

+0

我试图制作ManDVD项目http://mandvd.softonic.com/linux –

+0

当'./configure'不起作用时,两个标准问题是:(1)README文件说了什么? (2)如果README文件没有说明如何构建或在哪里查找构建信息,那么INSTALL文件说什么?如果您找不到这些文件中的任何一个,请查看目录中的内容并查看您可以找到的内容。如果你找不到配置脚本或者关于如何构建项目的说明,那么也许你不应该浪费你的时间。 –

回答

0

由于ManDVD's Makefile说:

############################################################################# 
# Makefile for building: mandvd 
# Generated by qmake (1.07a) (Qt 3.3.8b) on: Sun Mar 8 18:32:50 2009 
# Project: mandvd.pro 
# Template: app 
# Command: $(QMAKE) -o Makefile mandvd.pro 
############################################################################# 

的Makefile被qmake自动生成。

我在使用qmake不是专家,但我认为执行qmake会重新生成Makefile,这样的话你可以运行make && sudo make install作为INSTALL文件说。

你应该已经发现的项目是一种杂乱的(如果不是停止的话),所以要小心,并愿原力与你:)

相关问题