summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9dd972eadf9685af13602c735dfc7799cb08428c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# PKGBUILD generated by pipman
# Python package author: Steven Myint <UNKNOWN>
pkgname=python-autoflake
pkgver=1.2
pkgrel=1
pkgdesc="Removes unused imports and unused variables"
arch=(any)
url="https://github.com/myint/autoflake"
license=(Expat License)
makedepends=("python" "python-pip")
build() {
  pip install --no-deps --target="autoflake" autoflake
}
package() {
  mkdir -p $pkgdir/usr/lib/python3.7/site-packages/
  cp -r $srcdir/autoflake/* $pkgdir/usr/lib/python3.7/site-packages/
}