mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 20:37:15 +08:00
37 lines
1020 B
Bash
37 lines
1020 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
# (c) 2010 Drake Justice
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=cinstall
|
|
pkgver=0.0.2.2
|
|
pkgrel=1
|
|
depends=('kdelibs' 'qt' 'squashfs-tools' 'xz-utils')
|
|
pkgdesc="Bundle Creator/Launcher and Package-Manager"
|
|
arch=("i686" "x86_64")
|
|
license=('GPL')
|
|
install=$pkgname.install
|
|
url="http://chakra-project.org/"
|
|
optdepends=('akabei: for akabei support'
|
|
'pacman: for pacman support')
|
|
|
|
source=("http://chakra-project.org/sources/cinstall/cinstall-$pkgver.tar.bz2")
|
|
md5sums=('6217cccf2d5c3b0ec1c9d725cb632127')
|
|
|
|
build() {
|
|
mkdir -p $srcdir/build
|
|
cd $srcdir/build
|
|
|
|
cmake ../cinstall \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|
|
|