mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
49 lines
1.3 KiB
Bash
49 lines
1.3 KiB
Bash
# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
|
|
# Contributors: Manuel Tortosa <manutortosa@chakra-project.org>
|
|
|
|
# Include global configuration
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
_pkgname="amor"
|
|
pkgname="kdetoys-amor"
|
|
arch=('x86_64')
|
|
pkgver=${_kdever}
|
|
pkgrel=1
|
|
url="http://www.kde.org"
|
|
license=('GPL'
|
|
'LGPL'
|
|
'FDL')
|
|
options=('docs'
|
|
'!header'
|
|
'debug'
|
|
'log')
|
|
pkgdesc="Amusing Misuse Of Resources puts comic figures above your windows"
|
|
conflicts=("kdetoys-common"
|
|
"kdetoys-doc")
|
|
groups=("kde"
|
|
"kdetoys"
|
|
"kde-uninstall")
|
|
categories=('accessories')
|
|
install=kdetoys.install
|
|
makedepends=('pkg-config'
|
|
'cmake'
|
|
'automoc4'
|
|
"kde-workspace>=${_workspace_ver}")
|
|
source=($_mirror/${_pkgname}-$_kdever.tar.xz)
|
|
sha256sums=(`grep ${_pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
|
|
|
|
build() {
|
|
cd ${srcdir}/${_pkgname}-${pkgver}
|
|
cmake . \
|
|
-DCMAKE_BUILD_TYPE=${_build_type} \
|
|
-DCMAKE_INSTALL_PREFIX=${_installprefix} \
|
|
-DCMAKE_SKIP_RPATH=ON \
|
|
-DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed'
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${_pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|