Signed-off-by: Robert Eckelmann <longnoserob@postmarketos.org> Part-of: <https://gitlab.postmarketos.org/postmarketOS/pmaports/-/merge_requests/8594>
43 lines
802 B
Text
43 lines
802 B
Text
maintainer="Casey Connolly <kcxt@postmarketos.org>"
|
|
pkgname=postmarketos-dev
|
|
pkgver=2
|
|
pkgrel=0
|
|
pkgdesc="postmarketOS development tools"
|
|
url="https://postmarketos.org"
|
|
arch="noarch"
|
|
license="MIT"
|
|
options="!check"
|
|
depends="
|
|
alpine-sdk
|
|
bash
|
|
bash-completion
|
|
bison
|
|
coreutils
|
|
findutils
|
|
flex
|
|
gawk
|
|
gnutls-dev
|
|
htop
|
|
iputils
|
|
nano
|
|
openssh-client
|
|
openssl-dev
|
|
psutils
|
|
py3-setuptools
|
|
python3-dev
|
|
swig
|
|
"
|
|
install="$pkgname.post-install $pkgname.post-deinstall"
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir/etc/skel"
|
|
cat > "$pkgdir/etc/skel/.bashrc" <<EOF
|
|
# Just set a nice prompt
|
|
PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] '
|
|
EOF
|
|
|
|
cat > "$pkgdir/etc/skel/.bash_profile" <<EOF
|
|
# Source the users bashrc (global one is sourced by /etc/profile.d/00-bashrc.sh)
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
EOF
|
|
}
|