diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-08-24 18:02:20 +0800 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-08-24 18:02:20 +0800 |
| commit | 6bdbaea22300ede18d7c479082a1a575adc77175 (patch) | |
| tree | 2eefa28e0fac7f37ae6cb5a7fbed0af350ac1b3a /repos/core | |
| parent | 13130691a57ede2e08626da0e3c136d6bc86ddf8 (diff) | |
| download | alicelinux-6bdbaea22300ede18d7c479082a1a575adc77175.tar.gz alicelinux-6bdbaea22300ede18d7c479082a1a575adc77175.zip | |
autils: updated to 20240824
Diffstat (limited to 'repos/core')
| -rw-r--r-- | repos/core/autils/.files | 9 | ||||
| -rw-r--r-- | repos/core/autils/abuild | 10 |
2 files changed, 15 insertions, 4 deletions
diff --git a/repos/core/autils/.files b/repos/core/autils/.files index c6409ef4..e386093e 100644 --- a/repos/core/autils/.files +++ b/repos/core/autils/.files @@ -9,5 +9,14 @@ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/apkg-orphan -rwxr-xr-x root/root usr/bin/apkg-outdated -rwxr-xr-x root/root usr/bin/apkg-purge +-rwxr-xr-x root/root usr/bin/apkg-redundantdeps +-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 cf84c910..d4e9e544 100644 --- a/repos/core/autils/abuild +++ b/repos/core/autils/abuild @@ -1,16 +1,18 @@ name=autils -version=20240701 -_commit=73e405670670b4ff676d0fd26c4b9f9fdf63644c +version=20240824 +_commit=4bf6e463a6f22e1a58150bf2bb9000af0f5bab55 release=1 source="$name-$_commit.tar.gz::https://codeberg.org/emmett1/autils/archive/$_commit.tar.gz" build() { - mkdir -p $PKG/usr/bin $PKG/etc + mkdir -p $PKG/usr/bin $PKG/etc $PKG/usr/share for i in *; do + [ -d $i ] && continue case $i in - README*|LICENSE);; + 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 } |