diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-06-13 00:25:03 +0800 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-06-13 00:25:03 +0800 |
| commit | 239ced844ea434e623686094af3de168f90e4391 (patch) | |
| tree | 541d2c575f3b3832ca1a3087bde3f65dc74a8f89 /repos/core/autils/abuild | |
| parent | 3f80bb67166389b3acabf8f024ee1ad1a4364c1f (diff) | |
| download | alicelinux-239ced844ea434e623686094af3de168f90e4391.tar.gz alicelinux-239ced844ea434e623686094af3de168f90e4391.zip | |
repos updated
Diffstat (limited to 'repos/core/autils/abuild')
| -rw-r--r-- | repos/core/autils/abuild | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/repos/core/autils/abuild b/repos/core/autils/abuild new file mode 100644 index 00000000..5ab57e1c --- /dev/null +++ b/repos/core/autils/abuild @@ -0,0 +1,16 @@ +name=autils +version=20240612 +_commit=dfd4934a783d991b31063171f9e454a218e431b1 +release=1 +source="$name-$_commit.tar.gz::https://codeberg.org/emmett1/autils/archive/$_commit.tar.gz" + +build() { + 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 +} |