This commit is contained in:
Maxim Slipenko 2025-03-26 09:53:49 +03:00
commit 6b0a4f3ce3
3 changed files with 22 additions and 0 deletions

0
alr.toml Normal file

11
bar/alr.sh Normal file

@ -0,0 +1,11 @@
name='bar-pkg'
version='1.0.0'
release='1'
maintainer='UNKNOWN'
architectures=('all')
license=('UNKNOWN')
package() {
mkdir -p "$pkgdir/opt"
echo "BAR-PKG" > "$pkgdir/opt/bar"
}

11
foo/alr.sh Normal file

@ -0,0 +1,11 @@
name='foo-pkg'
version='1.0.0'
release='1'
maintainer='UNKNOWN'
architectures=('all')
license=('UNKNOWN')
package() {
mkdir -p "$pkgdir/opt"
echo "FOO-PKG" > "$pkgdir/opt/foo"
}