blob: 986dde14f8a48371af5f9c7985c301da19390ef4 (
plain)
1 # Description: A kernel module for automating module switches on optimus laptops
2 # URL: https://github.com/Bumblebee-Project/bbswitch
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4
5 name=bbswitch
6 version=0.8
7 release=1
8 source=(https://github.com/Bumblebee-Project/$name/archive/v$version/$name-$version.tar.gz \
9 $name-kernel56.patch)
10
11 build() {
12 cd $name-$version
13 patch -p1 -i $SRC/$name-kernel56.patch
14 make
15 install -D -m 0644 $name.ko $PKG/lib/modules/$(uname -r)/misc/$name.ko
16 }
|