auto


Logs | Files | README | LICENSE | GitLab


1
commit 6c888b8e5d72d8b702364186ca86602dcfa71fdd
2
Author: nvx1 <[email protected]>
3
Date:   Thu Mar 31 09:46:31 2022 +0200
4
5
    Update.
6
---
7
 Auto-PreInstall | 2 +-
8
 AutoInstall     | 2 +-
9
 LICENSE         | 2 +-
10
 PKGBUILD        | 6 +++---
11
 4 files changed, 6 insertions(+), 6 deletions(-)
12
13
diff --git a/Auto-PreInstall b/Auto-PreInstall
14
index e4c83a3..dc04682 100755
15
--- a/Auto-PreInstall
16
+++ b/Auto-PreInstall
17
@@ -1,4 +1,4 @@
18
-#!/bin/sh
19
+#!/usr/bin/env sh
20
 #########################################################################################################################################################################################
21
 ##                                                                A U T O L I N U X    B O O T S T R A P    S C R I P T                                                                ##
22
 #########################################################################################################################################################################################
23
diff --git a/AutoInstall b/AutoInstall
24
index edfc731..fe91eb3 100755
25
--- a/AutoInstall
26
+++ b/AutoInstall
27
@@ -1,4 +1,4 @@
28
-#!/bin/sh
29
+#!/usr/bin/env sh
30
 #########################################################################################################################################################################################
31
 ##                                                                A U T O L I N U X    B O O T S T R A P    S C R I P T                                                                ##
32
 #########################################################################################################################################################################################
33
diff --git a/LICENSE b/LICENSE
34
index cafb61c..e130fff 100644
35
--- a/LICENSE
36
+++ b/LICENSE
37
@@ -1,7 +1,7 @@
38
 MIT/X Consortium License
39
 
40
 Creator and Maintainer :
41
-© 2021-2022 Connor Etherington <[email protected]>
42
+© 2020-2022 Connor Etherington <[email protected]>
43
 ---------------------------------------------------------------------------
44
 Contributors:
45
 
46
diff --git a/PKGBUILD b/PKGBUILD
47
index efd5c9c..49745b1 100644
48
--- a/PKGBUILD
49
+++ b/PKGBUILD
50
@@ -2,7 +2,7 @@
51
 # ---
52
 _pkgname=AutoLinux
53
 pkgname=auto
54
-pkgver=2.1.1
55
+pkgver=3.0.1
56
 pkgrel=1
57
 pkgdesc='AutoLinux bootstrap scripts, with optional riced configs for the AutoLinux platform'
58
 arch=(x86_64)
59
@@ -15,7 +15,7 @@ sha256sums=('SKIP')
60
 
61
 package() {
62
   cd "$srcdir"
63
-    install -Dm755 ${_pkgname}/{AutoInstall,Auto-PreInstall,AutoPart} -t "${pkgdir}/opt/${_pkgname}"
64
-    install -Dm755 ${_pkgname}/{Auto-PreInstall,AutoInstall,AutoPart} -t "${pkgdir}/usr/bin"
65
+    install -Dm755 ${_pkgname}/{autoInstall,autoCleanInstall,AutoPart} -t "${pkgdir}/opt/${_pkgname}"
66
+    install -Dm755 ${_pkgname}/{autoCleanInstall,AutoInstall,AutoPart} -t "${pkgdir}/usr/bin"
67
     install -Dm644 ${_pkgname}/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
68
 }