2013-03-21 10:38:14 +08:00
|
|
|
# Maintainer: abveritas@chakra-project.org
|
2010-03-14 23:48:48 +08:00
|
|
|
|
|
|
|
pkgname=libmtp
|
2013-03-21 10:38:14 +08:00
|
|
|
pkgver=1.1.6
|
2012-06-14 07:27:52 +08:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="Library implementation of the Media Transfer Protocol"
|
2012-12-08 02:21:43 +08:00
|
|
|
arch=('x86_64')
|
2010-03-14 23:48:48 +08:00
|
|
|
url="http://libmtp.sourceforge.net"
|
2012-06-14 07:27:52 +08:00
|
|
|
license=('LGPL')
|
2012-12-08 02:21:43 +08:00
|
|
|
depends=('libusbx' 'libgcrypt')
|
2010-03-14 23:48:48 +08:00
|
|
|
options=('!libtool')
|
2012-06-14 07:27:52 +08:00
|
|
|
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
2013-03-21 10:38:14 +08:00
|
|
|
md5sums=('87835626dbcf39e62bfcdd4ae6da2063')
|
2010-03-14 23:48:48 +08:00
|
|
|
|
|
|
|
build() {
|
2012-06-14 07:27:52 +08:00
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
2012-12-08 02:21:43 +08:00
|
|
|
|
2012-06-14 07:27:52 +08:00
|
|
|
./configure --prefix=/usr --with-udev=/usr/lib/udev
|
|
|
|
make
|
2010-03-14 23:48:48 +08:00
|
|
|
}
|
2012-06-14 07:27:52 +08:00
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
2012-12-08 02:21:43 +08:00
|
|
|
|
2012-06-14 07:27:52 +08:00
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
}
|
|
|
|
|