mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 03:17:15 +08:00
31 lines
737 B
Bash
31 lines
737 B
Bash
|
|
pkgname=kdeplasma-applets-welcome-plasmoid
|
|
_gitname=welcome-plasmoid
|
|
pkgver=2015.11
|
|
pkgrel=4
|
|
depends=('plasma-workspace' 'kde-baseapps-kdialog')
|
|
makedepends=('extra-cmake-modules' 'git' 'make' 'cmake')
|
|
pkgdesc="Chakra's Welcome plasmoid, for live ISO info sharing"
|
|
arch=("x86_64")
|
|
license=('GPL')
|
|
#install=$pkgname.install
|
|
url="http://chakraos.org/"
|
|
#source=("$pkgname"::"git://git.chakraos.org/${_gitname}.git#tag=${pkgver}")
|
|
_gitsha='3c12e9'
|
|
source=("$pkgname"::"git://git.chakraos.org/${_gitname}.git#commit=${_gitsha}")
|
|
md5sums=('SKIP')
|
|
|
|
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname"
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname"
|
|
make DESTDIR=${pkgdir} install
|
|
} |