add test-81-multiple-packages

This commit is contained in:
2025-05-13 20:40:07 +03:00
parent 99d9bd5d3a
commit f8db6a669d

View File

@ -0,0 +1,29 @@
basepkg_name='test-81-multiple-packages'
name=(
first-package-with-dashes
second-package-with-dashes
)
version='1.0.0'
release='1'
desc='-'
homepage='-'
maintainer='Ivan Ivanov <example@example.ru>'
architectures=('all')
meta_first-package-with-dashes() {
desc="description first-package-with-dashes"
}
meta_second-package-with-dashes() {
desc="description second-package-with-dashes"
}
package_first-package-with-dashes() {
mkdir -p $pkgdir/opt
echo "first-package" > $pkgdir/opt/first-package
}
package_second-package-with-dashes() {
mkdir -p $pkgdir/opt
echo "second-package" > $pkgdir/opt/second-package
}