CentOS 7에 XPad를 설치할 수 없습니다

CentOS 7에 XPad를 설치할 수 없습니다

나는 xpad-5.0.0.tar.bz2다운로드 했다여기.

./configure나는 그 안에 있는 추가 정보를 따랐고 실행하고 실행하라는 메시지 make가 표시되었지만 make install그것이 내가 직면한 문제입니다.

내가 달릴 때 ./configure모든 './configure'것이 말되고 끝났습니다 bash: ./configure: No such file or directory.

실행 ./autogen.sh하고 ./configure댓글을 달면 AC_PROG_INTLTOOL([0.31], [no-xml])다음 오류가 발생합니다.

[andrew@localhost xpad-5.0.0]$ vi configure.ac
[andrew@localhost xpad-5.0.0]$ ./autogen.sh
+ autoreconf --force --install
configure.ac:57: warning: macro 'AM_GLIB_GNU_GETTEXT' not found in library
configure.ac:57: error: possibly undefined macro: AM_GLIB_GNU_GETTEXT
      If this token and others are legitimate, please use m4_pattern_allow.
      See the Autoconf documentation.
autoreconf: /usr/bin/autoconf failed with exit status: 1
[andrew@localhost xpad-5.0.0]$ 

답변1

EL7, CentOS 7:xpad-5.0.0-1.el7.centos.x86_64.rpm https://drive.google.com/file/d/1qj8ddLtVl9YWndwaYiZdaC-E9hLekZ8w/view?usp=sharing

다운로드 및 설치:# cd Downloads/ && yum install ./xpad-5.0.0-1.el7.centos.x86_64.rpm

Xpad: Fedora 소스 패키지 xpad-5.0.0-1.fc26.src.rpm에서 쉽게 구축http://dl.fedoraproject.org/pub/fedora/linux/updates/26/SRPMS/Packages/x/xpad-5.0.0-1.fc26.src.rpm$ rpmbuild -bb xpad.spec

답변2

소스에서 설치할 때의 기본 프로세스는 다음과 같습니다.

  • 아카이브 추출(이 경우 xpad-5.0.0.tar.bz2: )
  • 그런 다음 디렉터리를 추출된 폴더로 변경합니다.cd /path/to/the/extracted/folder
  • ./configure: 종속성을 확인하고 make파일을 생성합니다.
  • make그러면 명령이 컴파일됩니다.
  • make install설치가 계속됩니다

귀하의 경우에는 configure실행할 파일을 찾을 수 없습니다. 올바른 디렉터리에서 이 명령을 실행하고 있지 않을 수 있습니다. 2단계를 확인하세요. 또한 방금 동일한 설치 프로그램을 사용하여 테스트했습니다. ./autogen.sh구성 파일을 얻으려면 먼저 설치 프로그램을 실행해야 합니다.

Readme에서: 개발자를 위한 참고 사항: Bazaar를 사용하여 런치패드에서 직접 소스 코드를 가져오는 경우 "./configure"를 시작할 모든 파일을 제공하는 "./autogen.sh"를 실행해야 합니다.


편집하다 다음 오류가 발생하는 경우: configure.ac:16: error: possibly undefined macro: AC_PROG_INTLTOOL 파일에서 이 줄을 주석 처리할 수 있습니다.configure.ac

AC_PROG_INTLTOOL([0.31], [no-xml])

그런 다음 ./autogen.sh를 다시 실행하세요...

답변3

최신 트렁크를 구입하는 모든 사람을 위해https://launchpad.net/xpad/+milestone/5.4.0, 해야 할 일:

  • sudo apt install build-essential$PATH에서 올바른 C 컴파일러를 얻으세요.
  • sudo apt install intltoolAC_PROG_INTLTOOL([0.31], [no-xml])오류를 제거하다
  • aclocal, autoheader, automake --add-missing, 파일 autoconf가져오기configure
  • ./configure, make, make install.
  • 그런 다음 PKG 검사에서 설치해야 할 일부 GTK3 오류가 발생하는 것을 확인했습니다 gtk3.0. 설치할 패키지가 너무 많아서 아무것도 중단하고 싶지 않았기 때문에 여기서 중단했습니다.

관련 정보