diff options
Diffstat (limited to 'extra/libgpod/PKGBUILD')
-rw-r--r-- | extra/libgpod/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/extra/libgpod/PKGBUILD b/extra/libgpod/PKGBUILD new file mode 100644 index 000000000..5f520cd5b --- /dev/null +++ b/extra/libgpod/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 95175 2010-10-16 19:19:22Z remy $ +# Maintainer: Daniel Isenmann <daniel@archlinux.org> +# Contributor: William Rea <sillywilly@gmail.com> + +pkgname=libgpod +pkgver=0.8.0 +pkgrel=1 +pkgdesc="A shared library to access the contents of an iPod" +arch=(i686 x86_64) +license=('LGPL') +depends=('gtk2>=2.20.1' 'mutagen' 'sg3_utils>=1.27' 'libimobiledevice>=1.0.1') +makedepends=('intltool' 'swig' 'docbook-xsl' 'pygobject' 'gtk-sharp-2') +optdepends=('gtk-sharp-2: Mono bindings') +url="http://www.gtkpod.org/libgpod/" +source=(http://downloads.sourceforge.net/sourceforge/gtkpod/${pkgname}-${pkgver}.tar.gz) +options=('!libtool' '!emptydirs') +md5sums=('6660f74cc53293dcc847407aa5f672ce') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr \ + --enable-udev --with-python=/usr/bin/python2 + make PREFIX=/usr +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make PREFIX=/usr DESTDIR="${pkgdir}" install +} + |