core/chakra-live-skel/PKGBUILD
2014-05-08 21:39:18 +02:00

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=3
pkgdesc="The inital user configuration of a Chakra system"
arch=('x86_64')
url="http://www.chakraos.org/"
license=('GPL')
source=("skel.tar.gz")
md5sums=('7a4fa7c9604dac4422bd7d73555a2cfb')
package() {
cd ${srcdir}/skel
for folder in ./*; do \
cp -a $folder ${pkgdir}; \
done
chmod 750 ${pkgdir}/etc/sudoers.d/
}