# vim: set syn=sh: # Packager: Phill Watkins pkgname=libimobiledevice pkgver=1.0.6 pkgrel=1pw #arch=noarch source=("http://www.libimobiledevice.org/downloads/libimobiledevice-$pkgver.tar.bz2") sourcetemplate=http://people.salixos.org/pwatk/packages/extra/$pkgname docs=("AUTHORS" "COPYING*" "NEWS" "README") url=http://www.libimobiledevice.org/ slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "libimobiledevice (Support library for Apple devices)" "libimobiledevice is a software library that talks the protocols to" "support iPhone®, iPod Touch®, iPad® and Apple TV® devices. Unlike" "other projects, it does not depend on using any existing proprietary" "libraries and does not require jailbreaking. It allows other software" "to easily access the device's filesystem, retrieve information about" "the device and it's internals, backup/restore the device, manage" "SpringBoard® icons, manage installed applications, retrieve" "addressbook/calendars/notes and bookmarks and (using libgpod)" "synchronize music and video to the device." ) build() { set -e cd $startdir/src/$pkgname-$pkgver ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --mandir=/usr/man \ --infodir=/usr/info \ --build=$arch-slackware-linux \ --disable-static make -j $numjobs make install DESTDIR=$startdir/pkg set +e }