opt/libgphoto2/Pkgfile

26 lines
611 B
Plaintext
Raw Normal View History

# Description: A library designed to allow access to digital cameras to external programs
2021-02-22 15:59:20 +01:00
# URL: http://www.gphoto.org/proj/libgphoto2/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: curl libtool libusb libxml2
name=libgphoto2
2023-09-03 10:53:12 +02:00
version=2.5.31
2016-11-21 12:21:17 +01:00
release=1
source=(http://downloads.sourceforge.net/project/gphoto/libgphoto/$version/$name-$version.tar.bz2)
build () {
2021-02-22 15:59:20 +01:00
cd $name-$version
2021-02-22 15:59:20 +01:00
udevscriptdir=/lib/udev \
./configure \
--prefix=/usr \
--disable-nls \
--with-doc-dir=/usr/share/doc
2021-02-22 15:59:20 +01:00
make
make DESTDIR=$PKG install
2021-02-22 15:59:20 +01:00
rm -r $PKG/usr/share/doc
rm $PKG/usr/lib/libgphoto2*/*/*.la
}