mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:47:21 +08:00
28 lines
826 B
Bash
28 lines
826 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=obexfs
|
|
pkgver=0.12
|
|
pkgrel=3
|
|
pkgdesc="FUSE based filesystem using ObexFTP (currently beta)."
|
|
arch=('i686' 'x86_64')
|
|
url="http://openobex.triq.net/obexfs"
|
|
license=('GPL')
|
|
source=(http://triq.net/obexftp/$pkgname-$pkgver.tar.gz)
|
|
depends=('fuse' 'obexftp>=0.22')
|
|
md5sums=('0f505672b025cdb505e215ee707a2e2f')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
export OBEXFTP_CFLAGS="-I/usr/include/obexftp -I/usr/include/multicobex -I/usr/include/bfb"
|
|
export OBEXFTP_LIBS="-lobexftp -lmulticobex -lbfb -lopenobex -lbluetooth"
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|