summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllen2019-01-05 13:13:29 +0800
committerAllen2019-01-05 13:13:29 +0800
commit467b473db2f61d07805c39e2db64b40b7026cb94 (patch)
treecdf0f844f51ad741c7520bd19e7580ca4fde8658
parent0504683ab3c9e502a015e99d99db7b53e9beae41 (diff)
downloadaur-467b473db2f61d07805c39e2db64b40b7026cb94.tar.gz
Fix shebang
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 03dbb544b750..9a8315538a56 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -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
diff --git a/PKGBUILD b/PKGBUILD
index af0b42e2ba80..4eae8d346ce4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -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
}