core/kemoticons/PKGBUILD

32 lines
711 B
Bash
Raw Normal View History

# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/kemoticons
2014-11-15 06:35:29 +08:00
source ../frameworks.conf
pkgname=kemoticons
pkgver=${KFVersion}
pkgrel=1
pkgdesc='Support for emoticons and emoticons themes'
arch=('x86_64')
url='https://projects.kde.org/projects/frameworks/kemoticons'
license=('LGPL')
depends=('karchive' 'kservice')
2014-11-15 06:49:31 +08:00
makedepends=("extra-cmake-modules>=${KFECMVersion}" 'python3')
2014-11-15 06:35:29 +08:00
groups=('kf5')
options=("debug")
source=("${KFServer}/${pkgname}-${pkgver}.tar.xz")
sha256sums=( $(getSum ${pkgname}) )
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
2014-11-15 06:35:29 +08:00
make
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}