mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
697 B
Bash
22 lines
697 B
Bash
# $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
|
|
}
|