C++ 用のアーカイブを落としてくる。
./configure
make -j $(nproc)
mkdir deb
make install DESTDIR=$(pwd)/deb
deb 化
mkdir ./deb/DEBIAN
cat > ./deb/DEBIAN/control <<EOF
Package: nojima-protobuf
Version: 3.0.0-1
Maintainer: Nobody <[email protected]>
Architecture: amd64
Description: protocol buffer
EOF
cat > ./deb/DEBIAN/postinst <<EOF
#!/bin/sh -e
ldconfig
EOF
chmod +x ./deb/DEBIAN/postinst
fakeroot dpkg-deb --build -Z gzip ./deb .
sudo dpkg -i ./nojima-protobuf_3.0.0-1_amd64.deb