summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8bbeb45fbd756d93dfba7b4f49119b05378a4857 (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: Francesco Pantano <fmount9@autistici.org>
# Contributor: fmount

pkgname=('camimporter')
pkgver="0.1"
pkgrel="1"
pkgdesc="A useful tool to organize your multimedia files importing them from a generic CAMERA"
arch=('i686' 'x86_64')
url="https://github.com/fmount/${pkgname}.git"
license=('MIT')
makedepends=('python2-pillow' 'python2-prettytable' 'python2-six' 'python2-setuptools')
source=("git://github.com/fmount/camimporter.git")
#sha1sum=("SKIP")
md5sums=('SKIP')

build() {
  echo "${srcdir}/${pkgname}"
  cd "${srcdir}/$pkgname"
  echo -e "camimporter version: $pkgver" > PKG-INFO
}

package() {
        cd "${srcdir}/${pkgname}"
        sudo python2 setup.py install --root="$pkgdir/"
}