mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
29 lines
767 B
Bash
29 lines
767 B
Bash
![]() |
# ODROID-C1 Remote Control Setup
|
||
|
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
||
|
|
||
|
buildarch=4
|
||
|
|
||
|
pkgname=odroid-c1-remote
|
||
|
pkgver=0.3
|
||
|
pkgrel=1
|
||
|
arch=('armv7h')
|
||
|
pkgdesc="ODROID-C1 remote control setup"
|
||
|
url="http://www.hardkernel.com/"
|
||
|
license=('Proprietary')
|
||
|
source=("http://archlinuxarm.org/builder/src/${pkgname}-${pkgver}.tar.gz"
|
||
|
'odroid_remote.service')
|
||
|
md5sums=('ff5a3fa381f077dafaee167cdd399cc3'
|
||
|
'6866b4f07369de69ea6ec57a3304c484')
|
||
|
|
||
|
build() {
|
||
|
cd ${pkgname}
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd ${pkgname}
|
||
|
install -Dm644 "${srcdir}/odroid_remote.service" "${pkgdir}/usr/lib/systemd/system/odroid_remote.service"
|
||
|
install -Dm755 odroid_remote "${pkgdir}/usr/bin/odroid_remote"
|
||
|
install -Dm644 odroid_remote.conf "${pkgdir}/etc/odroid_remote.conf"
|
||
|
}
|