mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 01:37:15 +08:00
31 lines
777 B
Bash
31 lines
777 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=chakra-init-live
|
|
pkgver=2012.11
|
|
pkgrel=1
|
|
pkgdesc="Live-session systemd startup scripts"
|
|
arch=('x86_64')
|
|
url="http://www.chakra-project.org"
|
|
license=('GPL2')
|
|
depends=('spun-live')
|
|
makedepends=('asciidoc')
|
|
install=${pkgname}.install
|
|
source=('live' 'locale_setup.sh' '10-keyboard.conf')
|
|
md5sums=('1d40f2b5732b7eb1480038d2f646df5b'
|
|
'd5640418bdfb4970ccec0f0392fc023b'
|
|
'4df9f3c64316cf8b7f93729b389d704f')
|
|
|
|
package() {
|
|
cd ${srcdir}
|
|
# setup /etc
|
|
mkdir ${pkgdir}/etc
|
|
install -m755 -t ${pkgdir}/etc live
|
|
install -m755 -t ${pkgdir}/etc locale_setup.sh
|
|
mkdir ${pkgdir}/etc/skel
|
|
install -m755 -t ${pkgdir}/etc/skel 10-keyboard.conf
|
|
|
|
}
|