Não é possível compilar o pacote deb

1

Eu segui este tutorial sobre como criar um pacote .deb a partir da origem (tar .gz) e no comando de compilação final dpkg-buildpackage -rfakeroot

No entanto, recebo este erro na parte inferior:

make[2]: Entering directory '/home/user/packages/tympanus/tympanus-1.0.1/src'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory '/home/user/packages/tympanus/tympanus-1.0.1/src'
Making check in po
make[2]: Entering directory '/home/user/packages/tympanus/tympanus-1.0.1/po'
INTLTOOL_EXTRACT=/usr/bin/intltool-extract srcdir=. /usr/bin/intltool-update --gettext-package tympanus --pot
rm -f missing notexist
srcdir=. /usr/bin/intltool-update -m
The following files contain translations and are currently not in use. Please
consider adding these to the POTFILES.in file, located in the po/ directory.

src/tympanus.ui

If some of these files are left out on purpose then please add them to
POTFILES.skip instead of POTFILES.in. A file 'missing' containing this list
of left out files has been written in the current directory.
if [ -r missing -o -r notexist ]; then \
      exit 1; \
    fi
make[2]: *** [check] Error 1
make[2]: Leaving directory '/home/user/packages/tympanus/tympanus-1.0.1/po'
make[1]: *** [check-recursive] Error 1
make[1]: Leaving directory '/home/user/packages/tympanus/tympanus-1.0.1'
dh_auto_test: make -j1 check returned exit code 2
make: *** [build] Error 29
dpkg-buildpackage: error: debian/rules build gave error exit status 2

A ajuda é muito apreciada! Preciso corrigir esse problema o mais rápido possível.

    
por dlin 26.07.2012 / 20:53

2 respostas

1

Para esclarecer; adicione src / tympanis.ui para POTFILES.in.

    
por whiskers75 28.07.2012 / 22:19
0

Acho que o erro é bem claro sobre o que você precisa fazer lá. :)

Se você executar make check em sua árvore fonte, ao criar fora de tentar empacotar um .deb, você deve obter o mesmo erro.

    
por dobey 26.07.2012 / 21:12