blob: bea211a2b7080f458763b43c31df91732fd67df8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Maintainer: willemw <willemw12@gmail.com>
# Contributor: Arkham <arkham at archlinux dot us>
_pkgpostfix=cvs-20071123
pkgname=capture
pkgver=1.0.4
pkgrel=5
pkgdesc="Tool for periodic image capturing with digital Canon cameras"
arch=('i686' 'x86_64')
url="http://capture.sourceforge.net/"
license=('GPL')
depends=('gtk2' 'libptp2')
source=(https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver-$_pkgpostfix.tar.gz)
md5sums=('78899a989e7c2cc585a382e3aa17f491')
build() {
cd $pkgname-$pkgver-$_pkgpostfix
make
}
package() {
cd $pkgname-$pkgver-$_pkgpostfix
make PREFIX="$pkgdir/usr" install
}
|