desktop/chakra-live-skel/PKGBUILD

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/
}