mate-desktop / libmatemixer

Mixer library for MATE Desktop
https://mate-desktop.org/
GNU Lesser General Public License v2.1
14 stars 10 forks source link

tx: create a executable makepot and move libmatemixer.pot to srcdir #5

Closed raveit65 closed 6 years ago

raveit65 commented 6 years ago

This is for creating the *.pot file for auto-updating translations. Note, those files are only at github server and local repos. They won't include in tarballs. @monsta I hope you agree

monsta commented 6 years ago

Ok, I can use Debian build & clean again without impacting the git tree... Debian build system still makes me a generated .pot in po directory, but it's not tracked in git. Works as before.

Distcheck works, and makepot and .pot from root dir aren't included in the tarball.

raveit65 commented 6 years ago

Thanks for suggestion! I will use

#! /bin/sh

PACKAGE=libmatemixer;

make -C po $PACKAGE.pot && mv po/$PACKAGE.pot .

for makepot. Then it is clearly an executable file.