단일 Python 스크립트용으로 생성한 Debian 패키지가 비어 있는 이유는 무엇입니까?

단일 Python 스크립트용으로 생성한 Debian 패키지가 비어 있는 이유는 무엇입니까?

나는 누군가에게 매우 유용할 수 있는 매우 간단한 Python 프로젝트를 가지고 있습니다. 그래서 포장을 해보자고 생각했습니다. 라는 프로젝트는 maptoolPanasonic 카메라를 소유한 사람들이 카메라에 GPS 정보를 추가할 수 있도록 하는 도구입니다(참조:저장소).

나는 아래 단계를 따랐다.이 비디오:

  1. panasonic-maptool-1.0모든 항목( maptool.py, 데스크탑 실행 프로그램 및 아이콘)이 포함된 폴더를 생성했습니다 .
  2. .tar.gz이 폴더에서 만들기
  3. .tar.gz폴더에 넣으 세요 panasonic-maptool-1.0.
  4. 이 폴더에서 실행하여 dh_make -c mit -f panasonic-maptool-1.0.tar.gz"단일 바이너리 패키지"를 만듭니다.
  5. 폴더 안에서 , , 를 /debian조정했습니다 .rulescontrolcopyright
  6. 달리기lumix_map_tool/panasonic-maptool-1.0$ fakeroot dpkg-buildpackage -F

하지만 생성된 패키지를 보면 비어 있습니다. 누군가 이유를 설명할 수 있나요?

패키지로 생성된 모든 소스는 저장소에 있습니다. 내가 잘못한 것 중 하나가 규칙 파일이라고 생각합니다.

#!/usr/bin/make -f

icon = $(CURDIR)/maptool-icon.png
script = $(CURDIR)/maptool.py
launcher = $(CURDIR)/maptool.desktop

DEST1 = $(CURDIR)/debian/maptool/usr/share/maptool
DEST2 = $(CURDIR)/debian/maptool/usr/share/applications

build: build-stamp

build-stamp:
    dh_testdir
    touch build-stamp

clean:
    dh_testdir
    dh_testroot
    rm -f build-stamp
    dh_clean

install: build clean $(icon) $(script) $(launcher)
    dh_testdir
    dh_testroot
    dh_clean -k
    dh_installdirs

    mkdir -m 755 -p $(DEST1)
    mkdir -m 755 -p $(DEST2)

    install -m 666 $(icon) $(DEST1)
    install -m 777 $(script) $(DEST1)
    install -m 777 $(launcher) $(DEST2)

# Build architecture-independent files here.
binary-indep: build install
    dh_testdir
    dh_testroot
    dh_installchangelogs
    dh_installdocs
    dh_installexamples
#   dh_installmenu
#   dh_installdebconf
#   dh_installlogrotate
#   dh_installemacsen
#   dh_installpam
#   dh_installmime
#   dh_installinit
#   dh_installcron
#   dh_installman
#   dh_installinfo
#   dh_undocumented
    dh_installman
    dh_link
    dh_compress
    dh_fixperms
    dh_installdeb
#   dh_perl
    dh_gencontrol
    dh_md5sums
    dh_builddeb

# Build architecture-dependent files here.
binary-arch: build install
# We have nothing to do by default.

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install

관련 정보