2019-06-12 00:15:11 +02:00
|
|
|
# Description: patool is a portable command line archive file manager
|
|
|
|
# URL: https://github.com/wummel/patool
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2019-08-07 22:20:17 +00:00
|
|
|
# Depends on: python3-setuptools
|
2019-06-12 00:15:11 +02:00
|
|
|
|
|
|
|
name=patool
|
|
|
|
version=1.12
|
|
|
|
release=2
|
|
|
|
source=(https://github.com/wummel/patool/archive/upstream/$version/$name-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
2019-06-17 00:47:23 +02:00
|
|
|
cd $name-upstream-$version
|
2020-11-03 20:15:24 +00:00
|
|
|
/usr/bin/python3 setup.py build
|
|
|
|
/usr/bin/python3 setup.py install --root=$PKG \
|
|
|
|
--prefix=/usr \
|
|
|
|
--optimize=1 \
|
|
|
|
--skip-build
|
2019-06-12 00:15:11 +02:00
|
|
|
}
|