diff options
author | Matt Housh <jaeger@crux.ninja> | 2018-08-16 16:05:57 -0500 |
---|---|---|
committer | Matt Housh <jaeger@crux.ninja> | 2018-08-16 16:05:57 -0500 |
commit | fa5ef259cea1c360acb0ed13eb9ab89ebd442fa7 (patch) | |
tree | 990a2cf066cd42d4c1df3d62febb2cecf1c64016 /bbswitch | |
parent | f8d0408d5751a7c5506ea663224869ab059ac84a (diff) | |
download | contrib-fa5ef259cea1c360acb0ed13eb9ab89ebd442fa7.tar.gz contrib-fa5ef259cea1c360acb0ed13eb9ab89ebd442fa7.tar.xz |
bbswitch: initial import, version 0.8
Diffstat (limited to 'bbswitch')
-rw-r--r-- | bbswitch/.footprint | 5 | ||||
-rw-r--r-- | bbswitch/.md5sum | 1 | ||||
-rw-r--r-- | bbswitch/.signature | 5 | ||||
-rw-r--r-- | bbswitch/Pkgfile | 14 |
4 files changed, 25 insertions, 0 deletions
diff --git a/bbswitch/.footprint b/bbswitch/.footprint new file mode 100644 index 000000000..6271c00f8 --- /dev/null +++ b/bbswitch/.footprint @@ -0,0 +1,5 @@ +drwxr-xr-x root/root lib/ +drwxr-xr-x root/root lib/modules/ +drwxr-xr-x root/root lib/modules/<kernel-version>/ +drwxr-xr-x root/root lib/modules/<kernel-version>/misc/ +-rw-r--r-- root/root lib/modules/<kernel-version>/misc/bbswitch.ko diff --git a/bbswitch/.md5sum b/bbswitch/.md5sum new file mode 100644 index 000000000..3aab23e51 --- /dev/null +++ b/bbswitch/.md5sum @@ -0,0 +1 @@ +5b116b31ace3604ddf9d1fc1f4bc5807 bbswitch-0.8.tar.gz diff --git a/bbswitch/.signature b/bbswitch/.signature new file mode 100644 index 000000000..d5619f3ac --- /dev/null +++ b/bbswitch/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF354zgq4Ux9UdvI4YGfOkfO28NG4+ENVzXeBr4LZklDqVif/uThPdT+26QwgIbu1AzYhX/09b6LhetZo9NBHTIQw= +SHA256 (Pkgfile) = 7b8e1e8a4306ffe6833f26441d837049f383c3309498021ec718e6f2674fb141 +SHA256 (.footprint) = 7440253c3fd2b9481f105ccb7585cab877c98be6b285c733695bdd6b51cbd459 +SHA256 (bbswitch-0.8.tar.gz) = 76cabd3f734fb4fe6ebfe3ec9814138d0d6f47d47238521ecbd6a986b60d1477 diff --git a/bbswitch/Pkgfile b/bbswitch/Pkgfile new file mode 100644 index 000000000..7497c058b --- /dev/null +++ b/bbswitch/Pkgfile @@ -0,0 +1,14 @@ +# Description: A kernel module for automating module switches on optimus laptops +# URL: https://github.com/Bumblebee-Project/bbswitch +# Maintainer: Matt Housh, jaeger at crux dot ninja + +name=bbswitch +version=0.8 +release=1 +source=(https://github.com/Bumblebee-Project/$name/archive/v$version/$name-$version.tar.gz) + +build() { + cd $name-$version + make + install -D -m 0644 $name.ko $PKG/lib/modules/$(uname -r)/misc/$name.ko +} |