August 2009
1 post
create a simple .deb package
#!/bin/bash
# This script should be run from within the directory with the wav files.
# First, create the empty tree under a new "build" directory
# (the name "build" is completely arbitrary here)
mkdir -p build/usr/bin
# Put the sounds in the sounds directory
cp -v degrib/src/degrib/degrib build/usr/bin
# move into the build directory, make a docs directory
cd build
mkdir -p...