mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
35 lines
813 B
Bash
35 lines
813 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (x86_64):<almack[at]chakra-project[dot]org>
|
|
|
|
pkgname=yakuake
|
|
pkgver=2.9.9
|
|
pkgrel=1
|
|
pkgdesc="A KDE konsole application with the look and feel of that in the Quake engine"
|
|
arch=('x86_64')
|
|
url="http://yakuake.kde.org"
|
|
license=('GPL')
|
|
depends=('kdebase-konsole')
|
|
makedepends=('cmake' 'automoc4')
|
|
categories=('system')
|
|
install="${pkgname}.install"
|
|
source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
|
|
md5sums=('ef97612710b28d62e43a58bed49cbead')
|
|
|
|
build() {
|
|
cd ${srcdir}
|
|
mkdir build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_SKIP_RPATH=ON \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/build
|
|
make DESTDIR=${pkgdir} install
|
|
}
|