mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
35 lines
1012 B
Bash
35 lines
1012 B
Bash
#
|
|
# Chakra 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>
|
|
|
|
#from AUR package http://aur.archlinux.org/packages.php?ID=26724
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=ifuse
|
|
pkgver=1.0.0
|
|
pkgrel=1
|
|
pkgdesc="A fuse filesystem which uses libimobiledevice to expose an iPhone's contents as a filesystem"
|
|
url="http://libimobiledevice.org/"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL2')
|
|
depends=('libimobiledevice>=1.0.0' 'fuse' 'glib2')
|
|
makedepends=('gcc' 'make' 'automake' 'autoconf' 'pkgconfig')
|
|
provides=('ifuse-git')
|
|
conflicts=('ifuse-git')
|
|
source=(http://cloud.github.com/downloads/MattColyer/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('325d58abe182afa95187e6c55f2bba5f')
|
|
|
|
build() {
|
|
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|