mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 20:27:14 +08:00
29 lines
837 B
Bash
29 lines
837 B
Bash
# $Id: PKGBUILD 84641 2010-07-02 13:25:40Z andrea $
|
|
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
|
|
# Contributor: Geoffroy Carrier <geoffroy@archlinux.org>
|
|
# Contributor: Roman Kyrylych <roman@archlinux.org>
|
|
# Contributor: Keerthi <keerthi.linux@gmail.com>
|
|
|
|
pkgname=obex-data-server
|
|
pkgver=0.4.5
|
|
pkgrel=2
|
|
pkgdesc="A D-Bus service providing high-level OBEX client and server side functionality"
|
|
arch=('i686' 'x86_64')
|
|
url="http://wiki.muiline.com/obex-data-server"
|
|
license=('GPL')
|
|
depends=('dbus-glib' 'openobex' 'imagemagick')
|
|
source=(http://tadas.dailyda.com/software/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('8b11e7527c1e3a36a2a9a0c52816ec7b')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|