31 lines
901 B
Bash
31 lines
901 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=gtkam
|
|
pkgver=1.0
|
|
pkgrel=1
|
|
pkgdesc="Digital camera access graphical client"
|
|
url='https://gphoto.sourceforge.net/proj/gtkam'
|
|
arch=('i686' 'x86_64')
|
|
depends=('libgphoto2' 'libexif-gtk' 'gdk-pixbuf2')
|
|
makedepends=('gimp' 'intltool')
|
|
license=('GPL-2')
|
|
source=("https://downloads.sourceforge.net/project/gphoto/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz")
|
|
sha512sums=('5fe9b6a8578e5348de87ea6e3767fa200e4b71028159091cb7382cc96d625fb255c59c111e0886ce74b7921eaaf7013de6b238a47bf658584538ef48126278fc')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--without-bonobo \
|
|
--without-gnome \
|
|
--disable-scrollkeeper
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
install -Dm644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
}
|