Project

General

Profile

Download (191 Bytes) Statistics
| Branch: | Revision:
1
#!/bin/bash
2

    
3
# Install build dependencies
4
i="$(dpkg-checkbuilddeps 2>&1 | sed -e 's/.*dependencies: //;t;d')"
5
[ -n "$i" ] && sudo apt-get install $i
6

    
7
# Build package files
8
dpkg-buildpackage
9

    
(38-38/56)