makedeb


exa-bin 0.10.1-3


Replacement for ls written in Rust

Click here to go back to the commit logs for exa-bin.

Commit:


Hash: 43bd1c522d246bd1ed2e82d0cd73681e3550511c

Message: minor update

Diff


diff --git a/.SRCINFO b/.SRCINFO
index 554c279..f11b9e9 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -13,11 +13,11 @@ pkgbase = exa-bin
 	conflicts = exa
 	source_x86_64 = https://github.com/ogham/exa/releases/download/v0.10.1/exa-linux-x86_64-v0.10.1.zip
 	source_x86_64 = https://github.com/ogham/exa/blob/master/LICENCE
-	sha256sums_x86_64 = SKIP
-	sha256sums_x86_64 = SKIP
+	sha512sums_x86_64 = 6897aae29da9f6aa4a16ce14d8d7a00c9c292cef447b0d1c973465533f144d43b259b907c152637b0835f74b7c421650c23e3321579bb703b0a1a33979e46faa
+	sha512sums_x86_64 = SKIP
 	source_armv7 = https://github.com/ogham/exa/releases/download/v0.10.1/exa-linux-armv7-v0.10.1.zip
 	source_armv7 = https://github.com/ogham/exa/blob/master/LICENCE
-	sha256sums_armv7 = SKIP
+	sha256sums_armv7 = 5b2c80e142a40b6c3146e99ca22c28befb43c9bf94a61efc34e06efc07b8af960fc829e444854af26c7fe69b4da6e1b445c3d9511db7cfe43c8eb628def447b7
 	sha256sums_armv7 = SKIP
 
 pkgname = exa-bin
diff --git a/PKGBUILD b/PKGBUILD
index beb1cb2..af39296 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -13,26 +13,20 @@ url="https://github.com/ogham/${_pkgname}"
 license=("MIT")
 
 source_x86_64=("https://github.com/ogham/${_pkgname}/releases/download/v${pkgver}/${_pkgname}-linux-x86_64-v${pkgver}.zip"
-				"https://github.com/ogham/exa/blob/master/LICENCE")
+                  "https://github.com/ogham/exa/blob/master/LICENCE")
 source_armv7=("https://github.com/ogham/${_pkgname}/releases/download/v${pkgver}/${_pkgname}-linux-armv7-v${pkgver}.zip"
-				"https://github.com/ogham/exa/blob/master/LICENCE")
-sha256sums_x86_64=("SKIP"
-				   "SKIP")
-sha256sums_armv7=("SKIP"
-				  "SKIP")
+                  "https://github.com/ogham/exa/blob/master/LICENCE")
+sha512sums_x86_64=("6897aae29da9f6aa4a16ce14d8d7a00c9c292cef447b0d1c973465533f144d43b259b907c152637b0835f74b7c421650c23e3321579bb703b0a1a33979e46faa"
+                        "SKIP")
+sha256sums_armv7=("5b2c80e142a40b6c3146e99ca22c28befb43c9bf94a61efc34e06efc07b8af960fc829e444854af26c7fe69b4da6e1b445c3d9511db7cfe43c8eb628def447b7"
+                        "SKIP")
 
 package() {
-	mkdir -p ${pkgdir}/usr/bin/
-		cp "${srcdir}/bin/${_pkgname}" "${pkgdir}/usr/bin/"
-	mkdir -p ${pkgdir}/usr/local/man
-		cp "${srcdir}/man/${_pkgname}.1" "${pkgdir}/usr/local/man"
-		cp "${srcdir}/man/${_pkgname}_colors.5" "${pkgdir}/usr/local/man"
-	mkdir -p $pkgdir/etc/bash_completion.d
-		cp "$srcdir/completions/${_pkgname}.bash" "${pkgdir}/etc/bash_completion.d"
-	mkdir -p "${pkgdir}/usr/share/zsh/site-functions"
-		cp "${srcdir}/completions/${_pkgname}.zsh" "${pkgdir}/usr/share/zsh/site-functions"
-	mkdir -p "${pkgdir}/usr/share/fish/vendor_completions.d"
-		cp "${srcdir}/completions/${_pkgname}.fish" "${pkgdir}/usr/share/fish/vendor_completions.d"
-	mkdir -p "${pkgdir}/usr/share/licenses/${_pkgname}/"
-		cp "LICENCE" "${pkgdir}/usr/share/licenses/${_pkgname}"
+		install -Dm755 "${srcdir}/bin/${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
+		install -Dm644 "${srcdir}/man/${_pkgname}.1" "${pkgdir}/usr/local/man"
+		install -Dm644 "${srcdir}/man/${_pkgname}_colors.5" "${pkgdir}/usr/local/man"
+		install -Dm644 "$srcdir/completions/${_pkgname}.bash" "${pkgdir}/etc/bash_completion.d"
+		install -Dm644 "${srcdir}/completions/${_pkgname}.zsh" "${pkgdir}/usr/share/zsh/site-functions"
+		install -Dm644 "${srcdir}/completions/${_pkgname}.fish" "${pkgdir}/usr/share/fish/vendor_completions.d"
+		install -Dm644 "LICENCE" "${pkgdir}/usr/share/licenses/${_pkgname}"
 }