mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 07:54:37 +08:00
25 lines
654 B
Bash
25 lines
654 B
Bash
|
# Maintainer: Michael Towers (larch42 at googlemail dot com)
|
||
|
# 2010.04.04
|
||
|
pkgname=larch-live
|
||
|
pkgver=7.0.102
|
||
|
pkgrel=1.chakra.2010.04.11
|
||
|
|
||
|
pkgdesc="larch: compulsory components for the live system"
|
||
|
url="http://larch.berlios.de"
|
||
|
depends=("squashfs-tools" "lzop")
|
||
|
arch=(any)
|
||
|
license=("GPL")
|
||
|
|
||
|
build() {
|
||
|
mkdir -p ${startdir}/pkg/opt/larch
|
||
|
mkdir -p ${startdir}/pkg/usr/sbin
|
||
|
cp -d ${startdir}/run/* ${startdir}/pkg/usr/sbin
|
||
|
cp -dr ${startdir}/session-save ${startdir}/pkg/opt/larch
|
||
|
cp -dr ${startdir}/etc ${startdir}/pkg
|
||
|
cp -dr ${startdir}/lib ${startdir}/pkg
|
||
|
|
||
|
#remove nasty .svn folders
|
||
|
cd ${startdir}/pkg
|
||
|
rm -rfv `find . -type d -name .svn`
|
||
|
}
|