diff options
author | Cem Keylan <cem@ckyln.com> | 2019-12-16 10:19:00 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2019-12-16 10:19:00 +0300 |
commit | eb97973402d64d4fcf4ec0765024acf3a69b34dd (patch) | |
tree | 65e0a10a69b6ceaab91b3952ad9ea79040b059f3 /testing/kmod/build | |
parent | 7ba2cc425c44bed1167a7785cf2b777a4dcb630c (diff) | |
download | repository-eb97973402d64d4fcf4ec0765024acf3a69b34dd.tar.gz |
kmod: add package to testing
Diffstat (limited to 'testing/kmod/build')
-rwxr-xr-x | testing/kmod/build | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/kmod/build b/testing/kmod/build new file mode 100755 index 00000000..ec408eb9 --- /dev/null +++ b/testing/kmod/build @@ -0,0 +1,11 @@ +#!/bin/sh -e + +./configure \ + --prefix=/usr \ + --libdir=/usr/lib \ + --sysconfdir=/etc + +make + +make DESTDIR="$1" install + |