Skip to content

Creating a Debian package

Viktor Szépe edited this page Jun 5, 2015 · 1 revision
# dget is in
apt-get install -y devscripts build-essential

# Get the latest package for vivid
# See here: http://ppa.launchpad.net/saiarcot895/myppa/ubuntu/pool/main/a/apt-fast/
cd /usr/local/src/
dget -ux "http://ppa.launchpad.net/saiarcot895/myppa/ubuntu/pool/main/a/apt-fast/apt-fast_1.8.3~121+gitaf73a17-0ubuntu1~ppa1~vivid1.dsc"
cd apt-fast-*
dpkg-buildpackage -b
echo "Build exit status = $?"
cd ..

# Dependency
apt-get install -y aria2
dpkg -i apt-fast_*.deb
Clone this wiki locally