diff options
author | Jakub Smulski | 2024-09-10 19:25:47 +0200 |
---|---|---|
committer | Jakub Smulski | 2024-09-10 19:25:47 +0200 |
commit | e5deb65c2b00c923d3ed036464c1d8bef693c210 (patch) | |
tree | 26e0a17000bf9caa5804bf5475bc5d83b3fac873 /PKGBUILD | |
parent | a5a7ecb9b2d630dbd140f150c0c34453127f9919 (diff) | |
download | aur-e5deb65c2b00c923d3ed036464c1d8bef693c210.tar.gz |
Comment out python2 junk
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -49,13 +49,13 @@ package() { install -p -m 755 src/$pkgname $pkgdir/usr/bin # remove shebang from python scripts - for lib in $(find $pkgdir/usr/lib/python2.7/site-packages/$pkgname/ -name "*.py"); do - sed '/\/usr\/bin\/env/d' $lib > $lib.new && - touch -r $lib $lib.new && - mv $lib.new $lib - done + # for lib in $(find $pkgdir/usr/lib/python2.7/site-packages/$pkgname/ -name "*.py"); do + # sed '/\/usr\/bin\/env/d' $lib > $lib.new && + # touch -r $lib $lib.new && + # mv $lib.new $lib + # done - chmod 644 $pkgdir/usr/lib/python2.7/site-packages/$pkgname/$pkgname.py + # chmod 644 $pkgdir/usr/lib/python2.7/site-packages/$pkgname/$pkgname.py install -d $pkgdir/usr/share/$pkgname/reference-structures install -Dm644 $srcdir/reference-structures/*.pdb $pkgdir/usr/share/$pkgname/reference-structures/ |