summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitris Kiziridis2020-04-04 22:52:47 +0300
committerDimitris Kiziridis2020-04-04 22:52:47 +0300
commitc4080e4cbc82687f837fa029dba786dddb5a2746 (patch)
treee181aa9bd478f0e401fa15102b917a49aee219ac
parentc40a4df6202a8f6e10a89b93d4da2723696962da (diff)
downloadaur-c4080e4cbc82687f837fa029dba786dddb5a2746.tar.gz
sanitize pkgbuild
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
2 files changed, 3 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 90177c352960..c07df70988f7 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = stegify-bin
pkgdesc = Go tool for LSB steganography, capable of hiding any file within an image
pkgver = 1.2
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/DimitarPetrov/stegify
arch = x86_64
license = MIT
diff --git a/PKGBUILD b/PKGBUILD
index b4c463d59630..4769a755895e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=stegify-bin
pkgver=1.2
-pkgrel=1
+pkgrel=2
pkgdesc='Go tool for LSB steganography, capable of hiding any file within an image'
arch=('x86_64')
url="https://github.com/DimitarPetrov/stegify"
@@ -12,7 +12,6 @@ source=("${url}/releases/download/v1.2/stegify_linux_x86-64")
md5sums=('9dbd74e6f52ed67bad384d57c84033a7')
package() {
- cd "${srcdir}"
- install -Dm755 stegify* "${pkgdir}/usr/bin/stegify"
+ install -Dm755 "${srcdir}"/stegify* "${pkgdir}/usr/bin/stegify"
}
# vim:set ts=2 sw=2 et: \ No newline at end of file