14 lines
470 B
Bash
14 lines
470 B
Bash
pkgname=darkline-postinst
|
|
pkgver=2.0.1
|
|
pkgrel=1
|
|
pkgdesc="Fixes for termux-pacman and config updates, installs with updated keyring so it will be automatically installed on every device."
|
|
arch=('any')
|
|
depends=('dpkg' 'bash')
|
|
install="${pkgname}.install"
|
|
source=('01-alternatives.sh')
|
|
sha256sums=('6f2d920e55f9613797a5742c124def34fd6cf3cb3de21cd9f90796924fe217be')
|
|
package() {
|
|
install -D -m0644 -t "${terdir}"/usr/etc/.darkcustom/fixes ${srcdir}/01-alternatives.sh
|
|
}
|
|
|