diff options
author | Allen | 2019-01-05 13:13:29 +0800 |
---|---|---|
committer | Allen | 2019-01-05 13:13:29 +0800 |
commit | 467b473db2f61d07805c39e2db64b40b7026cb94 (patch) | |
tree | cdf0f844f51ad741c7520bd19e7580ca4fde8658 | |
parent | 0504683ab3c9e502a015e99d99db7b53e9beae41 (diff) | |
download | aur-467b473db2f61d07805c39e2db64b40b7026cb94.tar.gz |
Fix shebang
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ pkgbase = chipmunk-motif pkgdesc = Fast and efficient motif discovery tool, reborn and running pkgver = 1.0 - pkgrel = 1 + pkgrel = 2 url = http://autosome.ru/ChIPMunk/ arch = any license = custom @@ -1,7 +1,7 @@ # Maintainer: allencch <allencch at hotmail dot com> pkgname=chipmunk-motif pkgver=1.0 -pkgrel=1 +pkgrel=2 pkgdesc="Fast and efficient motif discovery tool, reborn and running" arch=('any') url="http://autosome.ru/ChIPMunk/" @@ -16,7 +16,7 @@ package() { cd "${srcdir}" install -m755 chipmunk.jar "${pkgdir}/opt/ChIPMunk" - echo "#/bin/sh" > ${pkgdir}/usr/bin/ChIPMunk + echo "#!/bin/sh" > ${pkgdir}/usr/bin/ChIPMunk echo 'java -jar /opt/ChIPMunk/chipmunk.jar "$@"' >> ${pkgdir}/usr/bin/ChIPMunk chmod 755 ${pkgdir}/usr/bin/ChIPMunk } |