mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-14 17:29:04 +08:00
24 lines
515 B
Bash
24 lines
515 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakraos.org
|
|
#
|
|
|
|
pkgname=chakra-init-live
|
|
pkgver=2016.02
|
|
pkgrel=1
|
|
pkgdesc="Live-session systemd startup scripts"
|
|
arch=('x86_64')
|
|
url="https://chakraos.org"
|
|
license=('GPL2')
|
|
install=$pkgname.install
|
|
source=('live' 'locale_setup.sh')
|
|
md5sums=('e757dbe814a219709d616c146a7c26a9'
|
|
'a6f4d7fc3b1365eb5274afa7177b2cd9')
|
|
|
|
package() {
|
|
cd ${srcdir}
|
|
# setup /etc
|
|
mkdir ${pkgdir}/etc
|
|
install -m755 -t ${pkgdir}/etc live
|
|
install -m755 -t ${pkgdir}/etc locale_setup.sh
|
|
}
|