mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
0af05b343a
renamed checksums to kdeapps.sums added for all packages the pgp signature for new/removed packages check: https://community.kde.org/Applications/16.12_Release_Notes#Tarballs_that_we_have_split
31 lines
816 B
Bash
31 lines
816 B
Bash
# Maintainer: abveritas@chakra-project.org
|
|
# Contributor: Xiao-Long Chen <chenxiaolong@cxl.epac.to>
|
|
|
|
pkgname=lightdm-kde
|
|
pkgver=0.3.1
|
|
pkgrel=1
|
|
pkgdesc="LightDM Greeter for KDE"
|
|
arch=('x86_64')
|
|
url="https://projects.kde.org/projects/playground/base/lightdm"
|
|
license=('GPL')
|
|
depends=('lightdm' 'openssl' 'perl' 'phonon' 'kdelibs')
|
|
makedepends=('cmake' 'automoc4')
|
|
install=lightdm-kde.install
|
|
source=("ftp://ftp.kde.org/pub/kde/unstable/$pkgname/src/$pkgname-$pkgver.tar.bz2")
|
|
screenshot="https://lh3.ggpht.com/-pxKnubTHapE/TunsU8rwAQI/AAAAAAAAHCI/fg9MP_QcTt4/s1600/lightdm-kde.png"
|
|
md5sums=('c699fef647f5dd8daa9cd66995e277da')
|
|
|
|
build() {
|
|
cd "$srcdir/lightdm-$pkgver/"
|
|
|
|
msg "Starting build..."
|
|
cmake . -DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/lightdm-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|