blob: 1480867a37097dd6ceac0dd30c4d3a6fcdc555e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Maintainer: Agorgianitis Loukas < agorglouk at gmail dot com >
pkgname=rtl8723au_bt-dkms
_pkgname=${pkgname%-*}
pkgver=0.1
pkgrel=1
pkgdesc="Bluetooth driver for RTL8723AE and RTL8723AU"
arch=('any')
url="http://www.realtek.com.tw/"
license=('GPL')
depends=('dkms')
conflicts=("${_pkgname}")
makedepends=('git')
options=(!strip)
source=("$_pkgname::git+https://github.com/lwfinger/rtl8723au_bt.git")
sha256sums=('SKIP')
build() {
cd "${srcdir}/${_pkgname}/"
git checkout kernel
rm -fr .git* readme.txt
}
package() {
instdir="$pkgdir/usr/src/$_pkgname-$pkgver"
install -dm755 "$instdir"
cp -r ${_pkgname}/* ${instdir}/
}
|