diff options
| -rw-r--r-- | repos/core/autils/.checksum | 2 | ||||
| -rw-r--r-- | repos/core/autils/.files | 7 | ||||
| -rw-r--r-- | repos/core/autils/abuild | 17 |
3 files changed, 6 insertions, 20 deletions
diff --git a/repos/core/autils/.checksum b/repos/core/autils/.checksum index 11bed090..56dffa86 100644 --- a/repos/core/autils/.checksum +++ b/repos/core/autils/.checksum @@ -1 +1 @@ -9d06ab96ed376e63573c8b8145c9f03427dcbf596f579dda02cbf15895f29896 autils-1301d84c0cf6c991998288e65e904973700c04b0.tar.gz +ba253ef6baac3c608c28fb989f98205c92ae226abb0d4d79b12fb625e7f9e245 autils-19b41562c7e4c5f2ed1539e9f032b3882a62b732.tar.gz diff --git a/repos/core/autils/.files b/repos/core/autils/.files index e386093e..393d946f 100644 --- a/repos/core/autils/.files +++ b/repos/core/autils/.files @@ -13,10 +13,3 @@ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/apkg-reposync -rwxr-xr-x root/root usr/bin/revdep -rwxr-xr-x root/root usr/bin/updateconf -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man5/ --rw-r--r-- root/root usr/share/man/man5/apkg.conf.5.gz -drwxr-xr-x root/root usr/share/man/man8/ --rw-r--r-- root/root usr/share/man/man8/apkg.8.gz --rw-r--r-- root/root usr/share/man/man8/revdep.8.gz diff --git a/repos/core/autils/abuild b/repos/core/autils/abuild index 2be85eeb..67f30561 100644 --- a/repos/core/autils/abuild +++ b/repos/core/autils/abuild @@ -1,18 +1,11 @@ name=autils -version=20240830 -_commit=1301d84c0cf6c991998288e65e904973700c04b0 +version=20250205 +_commit=19b41562c7e4c5f2ed1539e9f032b3882a62b732 release=1 source="$name-$_commit.tar.gz::https://codeberg.org/emmett1/autils/archive/$_commit.tar.gz" build() { - mkdir -p $PKG/usr/bin $PKG/etc $PKG/usr/share - for i in *; do - [ -d $i ] && continue - case $i in - README*|LICENSE|*.sh);; - *.conf) install -Dm644 $i $PKG/etc/$i;; - *) install -Dm755 $i $PKG/usr/bin/$i;; - esac - done - cp -r doc/man $PKG/usr/share + chmod +x INSTALL.sh + DESTDIR=$PKG ./INSTALL.sh + rm $PKG/etc/apkg.conf } |