-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPKGBUILD
36 lines (33 loc) · 863 Bytes
/
PKGBUILD
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
29
30
31
32
33
34
35
36
# Maintainer: Robert Maerz
# Contributor: Aline Freitas <aline AT alinefreitas DOT com DOT br>
pkgname=mkinitcpio-bluetooth
pkgver=1.4
pkgrel=1
pkgdesc="This is an initcpio hook for bluetooth connectivity during boot / in initramfs."
url="https://github.com/irreleph4nt/mkinitcpio-bluetooth"
arch=(
'x86_64'
'i686'
)
license=('GPLv2')
depends=(
'bluez'
'bluez-utils'
'dbus'
)
source=(
'bluetooth_install'
'bluetooth_hook'
'org.bluez.conf'
)
md5sums=(
'bf5baafb0514046da7ae7411010ea31b'
'b5e9f304ad0e1b6ac56d7a22d22f0b3a'
'5c171037726256d674bcc2d05fdbab86'
)
package() {
install -Dm644 bluetooth_install "${pkgdir}/usr/lib/initcpio/install/bluetooth"
install -Dm644 bluetooth_hook "${pkgdir}/usr/lib/initcpio/hooks/bluetooth"
install -Dm644 org.bluez.conf "${pkgdir}/usr/lib/initcpio/bluetooth/org.bluez.conf"
}
# vim:set ts=2 sw=2 et: