desktop/krecipes/PKGBUILD

39 lines
1.1 KiB
Bash
Raw Normal View History

2010-06-02 05:57:37 +08:00
#
2015-01-12 13:53:08 +08:00
# Chakra Packages for Chakra, part of chakraos.org
2010-06-02 05:57:37 +08:00
#
2015-01-12 13:53:08 +08:00
# Maintainer: Jeff Huang <s8321414[at]gmail[dot]com>
# Contributor: Phil Miller <philm[at]chakra-project[dog]org>
# Contributor: Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
# Contributor: Giuseppe Calà <jiveaxe@gmail.com>
2010-06-02 05:57:37 +08:00
pkgname=krecipes
2015-01-12 13:53:08 +08:00
pkgver=2.0.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."
arch=('i686' 'x86_64')
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-01-12 13:53:08 +08:00
source=(http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver-1.tar.xz)
md5sums=('dbd40f4352ce885ff0e81242c69bf0fc')
2010-06-02 05:57:37 +08:00
build() {
cd ${srcdir}
mkdir build
cd build
2015-01-12 13:53:08 +08:00
cmake ../${pkgname}-${pkgver} \
2010-06-02 05:57:37 +08:00
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_INSTALL_PREFIX=/usr
make || return 1
2015-01-12 13:53:08 +08:00
}
package() {
cd ${srcdir}/build
2010-06-02 05:57:37 +08:00
make DESTDIR=${pkgdir} install
}