summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri Merejkowsky2017-10-30 19:32:43 +0100
committerDimitri Merejkowsky2017-10-30 19:34:02 +0100
commit3f4e6d87dd224dbdd1e4c7e205b9ca0f0e855380 (patch)
treed0e497459be5bd199197ce2ee38e6a7e20ac9d8b
parentbbd4b441240d9a890469d4e506c5449275c51e93 (diff)
downloadaur-3f4e6d87dd224dbdd1e4c7e205b9ca0f0e855380.tar.gz
Don't bother with man pages for now
Installed binary crash with pkg_resources.DistributionNotFound when called during packaging. Probably best to write a *real* doc in sphinx and let sphinx generate the man pages
-rw-r--r--PKGBUILD9
1 files changed, 1 insertions, 8 deletions
diff --git a/PKGBUILD b/PKGBUILD
index ad1bd0a12bdd..1e0ca5a7697f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,7 +8,7 @@ url="http://github.com/dmerejkowsky/pycp"
arch=('any')
license=('MIT')
depends=('python')
-makedepends=('python' 'python-setuptools' 'help2man')
+makedepends=('python' 'python-setuptools')
source=("https://pypi.python.org/packages/7e/03/f4c255bf337469b3140c4dd3d7fdce2b4c2cb0a005d93b5dfd748b7f9fb2/pycp-7.3.0.tar.gz#md5=df9755749ad3d0283950ff00f3a0c273")
md5sums=('df9755749ad3d0283950ff00f3a0c273')
@@ -21,13 +21,6 @@ package() {
cd ${srcdir}/pycp-${pkgver}
python setup.py install --root=$pkgdir/ --optimize=1
- # man pages
- PYTHONPATH=. help2man --no-info --output pycp.1 ${pkgdir}/usr/bin/pycp
- PYTHONPATH=. help2man --no-info --output pymv.1 ${pkgdir}/usr/bin/pymv
- mkdir -p $pkgdir/usr/share/man/man1
- install pycp.1 $pkgdir/usr/share/man/man1/pycp.1
- install pymv.1 $pkgdir/usr/share/man/man1/pymv.1
-
# license
mkdir -p $pkgdir/usr/share/licenses/pycp
install COPYING.txt $pkgdir/usr/share/licenses/pycp/COPYING