desktop/libgpod/PKGBUILD
2018-03-11 20:28:14 +00:00

39 lines
1.4 KiB
Bash

pkgname=libgpod
pkgver=0.8.3
pkgrel=6
pkgdesc="A shared library to access the contents of an iPod"
arch=('x86_64')
license=('LGPL')
depends=('gdk-pixbuf2' 'mutagen' 'sg3_utils' 'libimobiledevice' 'libplist')
makedepends=('intltool' 'swig' 'docbook-xsl' 'pygobject2-devel')
url="http://www.gtkpod.org/libgpod/"
source=(https://downloads.sourceforge.net/sourceforge/gtkpod/${pkgname}-${pkgver}.tar.bz2
libgpod-0.8.2-pkgconfig_overlinking.patch
libgpod-fixswig.patch
0001-323-Segmentation-fault-when-opening-ipod.patch)
options=('!emptydirs')
sha256sums=('638a7959d04e95f1e62abad02bd33702e4e8dfef98485ac7d9d50395c37e955d'
'02daa2b46d0cfdee14c9d96eabf903ba4638694e669c5cb0ec462076837ac2ff'
'86f7054dc53ee2aa756c98dc893af6718bbeb6361a0785a5c93a5592b8cc8cdd'
'b181131ee5b42673074f8217155b4f147623cc63dd382ee4bfa2cb81cd281b20')
prepare() {
cd $pkgname-$pkgver
patch -Np1 -i ../libgpod-0.8.2-pkgconfig_overlinking.patch
patch -Np1 -i ../libgpod-fixswig.patch
patch -Np1 -i ../0001-323-Segmentation-fault-when-opening-ipod.patch
}
build() {
cd $pkgname-$pkgver
MCS=/usr/bin/mcs ./configure --prefix=/usr --with-udev-dir=/usr/lib/udev \
--enable-udev --with-python=/usr/bin/python2
make PREFIX=/usr
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
}
package() {
cd $pkgname-$pkgver
make PREFIX=/usr DESTDIR="${pkgdir}" install
}