summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 58dfec642bbf7c42baf659153210d943d61bdbb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Maintainer: Eric Engestrom <aur [at] engestrom [dot] ch>
# Contributor: orumin <dev@orum.in>

pkgname=coccigrep
pkgver=1.20
pkgrel=1
pkgdesc='Semantic grep for the C language based on coccinelle'
arch=('any')
url='http://home.regit.org/software/coccigrep/'
license=('GPL3')
depends=('coccinelle')
makedepends=('python-setuptools')
source=("https://github.com/regit/coccigrep/archive/v$pkgver.tar.gz")
sha256sums=('624840bac93b92b723bb89be1bf712717b984e7ab34c4712ec2a6135136df421')

package() {
  cd "coccigrep-$pkgver"
  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
}