21 lines
546 B
Plaintext
21 lines
546 B
Plaintext
|
# Description: libgphoto2 is a library which is used to access digital cameras
|
||
|
# URL: http://gphoto.sourceforge.net
|
||
|
# Packager:
|
||
|
# Maintainer: sten, nick dot steeves at shaw dot ca
|
||
|
# Depends on: libusb, libexif
|
||
|
|
||
|
name=libgphoto2
|
||
|
version=2.1.6
|
||
|
release=2
|
||
|
source=(http://dl.sourceforge.net/sourceforge/gphoto/$name-$version.tar.gz)
|
||
|
|
||
|
build () {
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr \
|
||
|
--disable-nls \
|
||
|
--disable-static
|
||
|
make EXIF_CFLAGS="-DHAVE_EXIF_0_5_4"
|
||
|
make DESTDIR=$PKG install
|
||
|
rm -rf $PKG/usr/share/doc
|
||
|
}
|