mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 07:27:15 +08:00
36 lines
920 B
Bash
36 lines
920 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=po-thumbnailer
|
|
_pkgname=kde-thumbnailer-po
|
|
pkgver=1.1
|
|
pkgrel=1
|
|
pkgdesc="Preview image generator plugin for GNU Gettext translation and template files."
|
|
arch=('i686' 'x86_64')
|
|
url="http://kde-apps.org/content/show.php?content=142036"
|
|
license=('GPL3')
|
|
depends=('kdebase-workspace' 'gettext')
|
|
makedepends=('automoc4' 'cmake')
|
|
source=("http://kde-apps.org/CONTENT/content-files/142036-$_pkgname-$pkgver.tar.bz2")
|
|
md5sums=('70d4690bd10ffbc48ae34dfc0a8b9c86')
|
|
|
|
build() {
|
|
cd $srcdir/$_pkgname
|
|
mkdir build && cd build
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$_pkgname/build
|
|
make DESTDIR=$pkgdir install
|
|
}
|