mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 06:57:16 +08:00
19 lines
450 B
Bash
19 lines
450 B
Bash
|
# Maintainer: Michael Towers (larch42 at googlemail dot com)
|
||
|
# 2010.10.24
|
||
|
pkgname=larch-live
|
||
|
pkgver=8.2.0
|
||
|
pkgrel=1
|
||
|
|
||
|
pkgdesc="larch: (partly compulsory) components for the live system"
|
||
|
url="http://larch.berlios.de"
|
||
|
depends=(aufs2-util squashfs-tools syslinux)
|
||
|
arch=(any)
|
||
|
license=("GPL")
|
||
|
|
||
|
build() {
|
||
|
mkdir -p ${pkgdir}/usr/sbin
|
||
|
cp -d ${startdir}/run/* ${startdir}/pkg/usr/sbin
|
||
|
cp -dr ${startdir}/etc ${pkgdir}
|
||
|
cp -dr ${startdir}/lib ${pkgdir}
|
||
|
}
|