desktop/krecipes/PKGBUILD

31 lines
780 B
Bash
Raw Normal View History

2010-06-02 05:57:37 +08:00
pkgname=krecipes
2015-03-24 07:09:31 +08:00
pkgver=2.1.0
pkgrel=1
2010-06-02 05:57:37 +08:00
pkgdesc="A tool designed to make organizing your personal recipes collection fast and easy."
2015-03-08 00:50:41 +08:00
arch=('x86_64')
2010-06-02 05:57:37 +08:00
url="http://extragear.kde.org/apps/krecipes/"
license=('GPL')
2015-01-12 13:53:08 +08:00
depends=('kde-runtime' 'qimageblitz' 'hicolor-icon-theme')
makedepends=('cmake' 'automoc4' 'docbook-xsl')
2015-01-12 13:53:08 +08:00
optdepends=('mariadb' 'postgresql')
categories=('utils')
2010-06-02 05:57:37 +08:00
install=${pkgname}.install
2015-03-24 07:09:31 +08:00
source=(http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz)
md5sums=('422ff3df8ab5aac56617d87942762e88')
2010-06-02 05:57:37 +08:00
build() {
2015-03-08 00:50:41 +08:00
cd $pkgname-$pkgver
2010-06-02 05:57:37 +08:00
mkdir build
cd build
2015-03-08 00:50:41 +08:00
cmake .. \
2010-06-02 05:57:37 +08:00
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_INSTALL_PREFIX=/usr
2015-03-24 07:09:31 +08:00
make
2015-01-12 13:53:08 +08:00
}
package() {
2015-03-08 00:50:41 +08:00
cd $pkgname-$pkgver/build
2010-06-02 05:57:37 +08:00
make DESTDIR=${pkgdir} install
2015-03-24 07:09:31 +08:00
}