mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 13:54:37 +08:00
22 lines
498 B
Bash
22 lines
498 B
Bash
#
|
|
# Core Packages for Chakra, part of chakraos.org
|
|
#
|
|
|
|
pkgname=chakra-live-skel
|
|
pkgver=1.0 # think if replace the version with the release date of the iso: 2014.05
|
|
pkgrel=6
|
|
pkgdesc="The inital user configuration of a Chakra system"
|
|
arch=('x86_64')
|
|
url="http://www.chakraos.org/"
|
|
license=('GPL')
|
|
source=("skel.tar.gz")
|
|
md5sums=('cf7f28d33394ebf23566a455c2822c92')
|
|
|
|
package() {
|
|
cd ${srcdir}/skel
|
|
for folder in ./*; do \
|
|
cp -a $folder ${pkgdir}; \
|
|
done
|
|
chmod 750 ${pkgdir}/etc/sudoers.d/
|
|
}
|