Rebuild krecipes to get locales back.

This commit is contained in:
Francesco Marinucci 2015-03-07 16:50:41 +00:00
parent b909addad7
commit 409333a32e

View File

@ -8,9 +8,9 @@
pkgname=krecipes pkgname=krecipes
pkgver=2.0.0 pkgver=2.0.0
pkgrel=1 pkgrel=2
pkgdesc="A tool designed to make organizing your personal recipes collection fast and easy." pkgdesc="A tool designed to make organizing your personal recipes collection fast and easy."
arch=('i686' 'x86_64') arch=('x86_64')
url="http://extragear.kde.org/apps/krecipes/" url="http://extragear.kde.org/apps/krecipes/"
license=('GPL') license=('GPL')
depends=('kde-runtime' 'qimageblitz' 'hicolor-icon-theme') depends=('kde-runtime' 'qimageblitz' 'hicolor-icon-theme')
@ -22,10 +22,10 @@ source=(http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver-1.t
md5sums=('dbd40f4352ce885ff0e81242c69bf0fc') md5sums=('dbd40f4352ce885ff0e81242c69bf0fc')
build() { build() {
cd ${srcdir} cd $pkgname-$pkgver
mkdir build mkdir build
cd build cd build
cmake ../${pkgname}-${pkgver} \ cmake .. \
-DCMAKE_BUILD_TYPE=Release \ -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=ON \ -DCMAKE_SKIP_RPATH=ON \
-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_PREFIX=/usr
@ -33,6 +33,6 @@ build() {
} }
package() { package() {
cd ${srcdir}/build cd $pkgname-$pkgver/build
make DESTDIR=${pkgdir} install make DESTDIR=${pkgdir} install
} }