mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
29 lines
584 B
Bash
29 lines
584 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=ifuse
|
|
pkgver=1.1.3
|
|
pkgrel=2
|
|
pkgdesc='A fuse filesystem to access the contents of an iPhone or iPod Touch'
|
|
url='http://libimobiledevice.org/'
|
|
arch=('x86_64')
|
|
license=('LGPL2.1')
|
|
depends=('libimobiledevice' 'fuse')
|
|
categories=('utils')
|
|
source=("http://www.libimobiledevice.org/downloads/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('83478c7b531b26db286c293bb25bd917')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
}
|