mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
29 lines
742 B
Bash
29 lines
742 B
Bash
# ODROID-C1 Remote Control Setup
|
|
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
buildarch=4
|
|
|
|
pkgname=odroid-c1-remote
|
|
pkgver=0.3
|
|
pkgrel=2
|
|
arch=('armv7h')
|
|
pkgdesc="ODROID-C1 remote control setup"
|
|
url="http://www.hardkernel.com/"
|
|
license=('Proprietary')
|
|
makedepends=('git')
|
|
source=("git+https://github.com/mdrjr/c1_irremote.git"
|
|
'odroid_remote.service')
|
|
md5sums=('SKIP'
|
|
'6866b4f07369de69ea6ec57a3304c484')
|
|
|
|
build() {
|
|
cd c1_irremote
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd c1_irremote
|
|
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"
|
|
}
|