diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-05-24 12:22:12 +0800 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-05-24 12:22:12 +0800 |
| commit | 46ca440e9d6cc606d9c3233021e32d24b25172cf (patch) | |
| tree | eeb573e47ac56498fbf74bda6d22fac47038ecab /repos/core/autils | |
| parent | 8c2e7bb570c11a51fdcecf7302af4058757d862c (diff) | |
| download | alicelinux-46ca440e9d6cc606d9c3233021e32d24b25172cf.tar.gz alicelinux-46ca440e9d6cc606d9c3233021e32d24b25172cf.zip | |
added repos
Diffstat (limited to 'repos/core/autils')
| -rw-r--r-- | repos/core/autils/.files | 7 | ||||
| -rw-r--r-- | repos/core/autils/build | 8 | ||||
| -rw-r--r-- | repos/core/autils/info | 5 |
3 files changed, 20 insertions, 0 deletions
diff --git a/repos/core/autils/.files b/repos/core/autils/.files new file mode 100644 index 00000000..e95a3f9e --- /dev/null +++ b/repos/core/autils/.files @@ -0,0 +1,7 @@ +drwxr-xr-x root/root etc/ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/apkg +-rwxr-xr-x root/root usr/bin/apkg-deps +-rwxr-xr-x root/root usr/bin/revdep +-rwxr-xr-x root/root usr/bin/updateconf diff --git a/repos/core/autils/build b/repos/core/autils/build new file mode 100644 index 00000000..b99d93ac --- /dev/null +++ b/repos/core/autils/build @@ -0,0 +1,8 @@ +mkdir -p $PKG/usr/bin $PKG/etc +for i in *; do + case $i in + README*|LICENSE);; + *.conf) install -Dm644 $i $PKG/etc/$i;; + *) install -Dm755 $i $PKG/usr/bin/$i;; + esac +done diff --git a/repos/core/autils/info b/repos/core/autils/info new file mode 100644 index 00000000..55ec5beb --- /dev/null +++ b/repos/core/autils/info @@ -0,0 +1,5 @@ +name=autils +version=20240522 +_commit=7f803249b673228189421c37c5f5fbf4b3d79c3f +release=1 +source="$name-$_commit.tar.gz::https://codeberg.org/emmett1/autils/archive/$_commit.tar.gz" |