mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 08:17:25 +08:00
22 lines
499 B
Bash
22 lines
499 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=10
|
|
pkgdesc="The inital user configuration of a Chakra system"
|
|
arch=('x86_64')
|
|
url="http://www.chakraos.org/"
|
|
license=('GPL')
|
|
source=("skel.tar.gz")
|
|
md5sums=('356078c60c15f6c89a1f02918441990b')
|
|
|
|
package() {
|
|
cd ${srcdir}/skel
|
|
for folder in ./*; do \
|
|
cp -a $folder ${pkgdir}; \
|
|
done
|
|
chmod 750 ${pkgdir}/etc/sudoers.d/
|
|
}
|