From 061c3db0732b4b36368f97a357fe1009d94c1447 Mon Sep 17 00:00:00 2001 From: Shuotian Cheng Date: Fri, 23 Sep 2016 13:07:32 -0700 Subject: [PATCH] src: Add libnl3 build.sh script --- src/libnl3/build.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 src/libnl3/build.sh diff --git a/src/libnl3/build.sh b/src/libnl3/build.sh new file mode 100755 index 000000000000..a23b8f7e3dc2 --- /dev/null +++ b/src/libnl3/build.sh @@ -0,0 +1,22 @@ +#!/bin/bash +## This script is to build the libnl3 3.2.27-1 +## +## USAGE: +## ./build.sh + +# Obtaining the libnl3 +rm -rf ./libnl3 +git clone https://anonscm.debian.org/git/collab-maint/libnl3.git +pushd ./libnl3 +git checkout -f b77c0e49cb + +# Patch +export QUILT_PATCHES=debian/patches +quilt push +quilt push +quilt push +quilt push +quilt push +dpkg-buildpackage -rfakeroot -b -us -uc + +popd