PKGBUILDs/extra/libifp/PKGBUILD

23 lines
697 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
# $Id: PKGBUILD 49943 2009-08-17 03:43:40Z kevin $
# Maintainer: damir <damir@archlinux.org>
# Contributor: Mark Rosenstand <mark@borkware.net>
pkgname=libifp
pkgver=1.0.0.2
pkgrel=2
pkgdesc="General-purpose library-driver for iRiver's iFP portable audio players"
arch=('i686' 'x86_64')
license=('GPL')
url="http://ifp-driver.sourceforge.net/libifp/"
depends=('libusb')
options=('!libtool')
source=(http://downloads.sourceforge.net/sourceforge/ifp-driver/${pkgname}-${pkgver}.tar.gz)
md5sums=('d4114794b13bd32b6b767e0870df6fc4')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr --mandir=/usr/share/man --with-libusb
make || return 1
make DESTDIR=${pkgdir} install
}