2014-01-19 17:38:37 +00:00
|
|
|
# Maintainer: Dominik Heidler <dominik@heidler.eu>
|
|
|
|
|
2014-01-19 17:47:31 +00:00
|
|
|
buildarch=4
|
|
|
|
|
2014-01-19 17:38:37 +00:00
|
|
|
pkgname=ti-uim
|
|
|
|
pkgver=0.0.1
|
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="UIM daemon to enable bluetooth on the pandaboard"
|
|
|
|
arch=('armv7h')
|
2014-01-19 17:53:18 +00:00
|
|
|
url="https://gitorious.org/uim"
|
2014-01-19 17:38:37 +00:00
|
|
|
license=('GPL')
|
|
|
|
groups=()
|
|
|
|
provides=()
|
2014-01-19 17:42:14 +00:00
|
|
|
depends=('bluez')
|
2014-01-19 17:53:29 +00:00
|
|
|
makedepends=('git')
|
2014-01-19 17:38:37 +00:00
|
|
|
install='ti-uim.install'
|
|
|
|
|
2015-04-16 14:24:27 +00:00
|
|
|
# As gitorious was aquired by gitlab and they might shutdown gitorious.org
|
|
|
|
# I created a backup of the git repo on my github account: git://github.com/asdil12/ti-uim.git
|
2014-01-19 17:38:37 +00:00
|
|
|
source=("$pkgname::git://git.gitorious.org/uim/uim.git" "ti-bluetooth-uim" "ti-uim.service")
|
|
|
|
md5sums=('SKIP'
|
|
|
|
'defc01e5c17bf00a051dcf4ff51ae3ed'
|
|
|
|
'29b75236d1e99b2a82375312a8815fb6')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$srcdir/$pkgname"
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/$pkgname"
|
|
|
|
install -vDm755 uim $pkgdir/usr/bin/$pkgname
|
|
|
|
install -vDm755 $srcdir/ti-bluetooth-uim $pkgdir/usr/bin/ti-bluetooth-uim
|
|
|
|
install -vDm644 $srcdir/ti-uim.service $pkgdir/usr/lib/systemd/system/ti-uim.service
|
|
|
|
}
|
|
|
|
|