mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 01:57:40 +08:00
27 lines
640 B
Bash
27 lines
640 B
Bash
# Contributor: Michael Towers <larch42 (at) googlemail (dot) com>
|
|
#2011.02.01
|
|
pkgname=liblarch
|
|
pkgver=1.14
|
|
pkgrel=1
|
|
pkgdesc="Support modules for larch-related programs"
|
|
license=('GPL')
|
|
arch=(any)
|
|
depends=()
|
|
optdepends=('python-pexpect: for rootrun, to run shell commands as root via su/sudo'
|
|
'python2-qt: for suim, the gui module'
|
|
)
|
|
url="http://larch.berlios.de"
|
|
install=liblarch.install
|
|
|
|
build() {
|
|
_destdir=opt/apps/liblarch
|
|
cd $pkgdir
|
|
mkdir -p $_destdir
|
|
|
|
cp $startdir/*.py $_destdir
|
|
cp -dr $startdir/uim $_destdir
|
|
cp -dr $startdir/i18n $_destdir
|
|
cp -dr $startdir/docs $_destdir
|
|
rm -f $_destdir/i18n/lang
|
|
}
|