dev #2

Merged
wyj merged 232 commits from dev into main 2026-01-13 22:39:32 -05:00
Showing only changes of commit 5410fc58a7 - Show all commits
+28
View File
@@ -0,0 +1,28 @@
pkgname="just-etc-shell"
pkgver=1.0
pkgdesc="just test write an item into /etc/shells"
homepage=""
license=("GPL")
sources=()
urls=()
md5sums=()
src_prepare() {
:
}
src_build() {
touch testshell
}
src_install() {
install -Dvm755 testshell ${pkgdir}/bin/testshell
}
src_postinstall() {
leaf_add_shell /bin/testshell
}
src_postremove() {
leaf_remove_shell /bin/testshell
}