mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
31 lines
1014 B
Bash
31 lines
1014 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>
|
|
# Contributor: mcder3 <mcder3[at]gmail[dot]com>
|
|
|
|
pkgname=kdeplasma-addons-applets-takeoff
|
|
altpkgname=takeoff
|
|
pkgver=1.0
|
|
pkgrel=1
|
|
pkgdesc="Takeoff is a full screen menu inspired in the aspect of Slingshot and the OS X Launchpad menu but adapted to the KDE users in a plasmoid."
|
|
url="http://kde-apps.org/content/show.php/Takeoff?content=144078"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL3')
|
|
depends=('qt' 'kde-workspace')
|
|
makedepends=('cmake' 'make' 'gcc' 'automoc4' 'fakeroot')
|
|
source=("http://takeoff-launcher.googlecode.com/files/${altpkgname}-${pkgver}.tar.gz")
|
|
md5sums=('ac03a1659d2d66448ae880b3dec06095')
|
|
|
|
build() {
|
|
cd "${srcdir}/${altpkgname}-${pkgver}"
|
|
cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${altpkgname}-${pkgver}/build"
|
|
make DESTDIR=$pkgdir install
|
|
} |