summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Jaara2015-07-11 14:42:53 +0300
committerJesse Jaara2015-07-11 14:42:53 +0300
commite3c6d7c0f829d9bdeeab8420f781e695744a5aa2 (patch)
tree780fe304aa8945460246d6ea4015467341187116
parent6c6c99f3284245c42fa9cbb24ff9bda3b13378e3 (diff)
downloadaur-e3c6d7c0f829d9bdeeab8420f781e695744a5aa2.tar.gz
trid.sh had '-' before deffile path
-rw-r--r--PKGBUILD5
-rw-r--r--trid.sh2
2 files changed, 4 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index a2f0ddf660be..e545cfb9eaaa 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,19 +3,20 @@
pkgname=trid
pkgver=2.20
-pkgrel=2
+pkgrel=3
pkgdesc="An utility designed to identify file types from their binary signatures"
arch=('i686' 'x86_64')
url="http://mark0.net/soft-trid-e.html"
license=('CUSTOM')
depends=('ncurses' 'libtinfo' 'python2')
+install=trid.install
source=(trid.sh
update-trid-defs.sh
update-trid-defs.service
update-trid-defs.timer
triupdate-1.00.zip::http://mark0.net/download/tridupdate.zip)
-md5sums=('9e4849a0d14bb4df970dcbc1159c4007'
+md5sums=('fe447a9fb6da5591ad72bf17e77084ae'
'6ef06da62edde6c84c9473f7a62969e6'
'a78caa24cf0851d17b8d3798f9e776a3'
'2ea012671b50e0761cbc4bbec820952e'
diff --git a/trid.sh b/trid.sh
index 4eccda941661..fedc8f156ad4 100644
--- a/trid.sh
+++ b/trid.sh
@@ -1,6 +1,6 @@
#!/usr/bin/sh
-if [ ! -e -/var/lib/trid/triddefs.trd ]; then
+if [ ! -e /var/lib/trid/triddefs.trd ]; then
echo "Defenitions database not found!"
echo "Run update-trid-defs as root to download the database."
echo "You can enable automatic updates by enabling the update-trid-defs systemd service."