blob: 4aaeda954bb915916e3ebeb345e7a10a4a4119a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Librairie pour le iRiver
# URL: http://ifp-driver.sourceforge.net/libifp/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libusb-compat
# Run on: libusb-compat
name=libifp
version=1.0.0.2
release=1
source=(http://prdownloads.sourceforge.net/ifp-driver/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--with-libusb \
--mandir=/usr/share/man
make
make DESTDIR=$PKG install
}
|