Skip to content

Commit b4f2735

Browse files
authored
src: Add libnl3 build.sh script (#11)
1 parent 59d13d0 commit b4f2735

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

src/libnl3/build.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/bin/bash
2+
## This script is to build the libnl3 3.2.27-1
3+
##
4+
## USAGE:
5+
## ./build.sh
6+
7+
# Obtaining the libnl3
8+
rm -rf ./libnl3
9+
git clone https://anonscm.debian.org/git/collab-maint/libnl3.git
10+
pushd ./libnl3
11+
git checkout -f b77c0e49cb
12+
13+
# Patch
14+
export QUILT_PATCHES=debian/patches
15+
quilt push
16+
quilt push
17+
quilt push
18+
quilt push
19+
quilt push
20+
dpkg-buildpackage -rfakeroot -b -us -uc
21+
22+
popd

0 commit comments

Comments
 (0)