blob: 0028f1ceb9c5ed478002e433fd36b69d723cd22c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Kaleb Klein <klein.jae@gmail.com>
pkgname=i3scrot-git
pkgver=1.0.2
pkgrel=5
pkgdesc="Shell script for using scrot in i3"
arch=(any)
license=('MIT')
url="https://github.com/pazuzu156/i3scrot"
depends=('scrot' 'imagemagick')
conflicts=('i3-scrot')
source=('git://github.com/pazuzu156/i3scrot.git')
validpgpkeys=(120206848BD3375043BF1B253209FA22E33FF70C)
md5sums=('SKIP')
package() {
cd "$srcdir/i3scrot"
PREFIX="$pkgdir/usr" make install
}
|