blob: 53d0be1e820ebbc1f0dfa6b49a84d2644ad40608 (
plain)
1 # Description: patool is a portable command line archive file manager
2 # URL: https://github.com/wummel/patool
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-setuptools
5
6 name=patool
7 version=1.12
8 release=2
9 source=(https://github.com/wummel/patool/archive/upstream/$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-upstream-$version
13 python3 setup.py install --root=$PKG --prefix=/usr --optimize=1
14 }
|