mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
39 lines
1.0 KiB
Bash
39 lines
1.0 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=krename
|
|
pkgver=4.0.9
|
|
pkgrel=2
|
|
pkgdesc="A very powerfull batch file renamer for KDE"
|
|
arch=('x86_64')
|
|
url="http://www.krename.net"
|
|
license=('GPL')
|
|
depends=('kdelibs' 'taglib' 'xdg-utils')
|
|
makedepends=('cmake' 'automoc4')
|
|
options=('libtool')
|
|
categories=('utils')
|
|
install=${pkgname}.install
|
|
source=("http://sourceforge.net/projects/krename/files/KDE4%20krename-stable/${pkgver}/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('21b2daeee6d81155bd3c0fa2bc1b9a63')
|
|
|
|
build() {
|
|
cd ${srcdir}
|
|
mkdir build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-I/usr/include/freetype2"
|
|
sed -i 's|/share/locale|/share/locale/kde4|' po/cmake_install.cmake
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/build
|
|
make DESTDIR=${pkgdir} install
|
|
}
|