diff options
Diffstat (limited to 'community/krecipes')
-rw-r--r-- | community/krecipes/PKGBUILD | 35 | ||||
-rw-r--r-- | community/krecipes/krecipes.install | 12 |
2 files changed, 47 insertions, 0 deletions
diff --git a/community/krecipes/PKGBUILD b/community/krecipes/PKGBUILD new file mode 100644 index 000000000..fb2fa4336 --- /dev/null +++ b/community/krecipes/PKGBUILD @@ -0,0 +1,35 @@ +# $Id$ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: shamrok <szamrok@gmail.com> +# Contributor: G_Syme <demichan(at)mail(dot)upb(dot)de> +# Contributor: AdriĆ Arrufat <swiftscythe@gmail.com> + +pkgname=krecipes +pkgver=2.0beta2 +_pkgver=2.0-beta2 +pkgrel=1 +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') +depends=('kdebase-runtime' 'qimageblitz' 'hicolor-icon-theme') +makedepends=('cmake' 'automoc4' 'docbook-xsl') +optdepends=('mysql' 'postgresql') +install=${pkgname}.install +source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${_pkgver}.tar.gz) +md5sums=('4c01ccad7ad1409cb35c824a61250fe2') + +build() { + cd ${srcdir} + mkdir build + cd build + cmake ../${pkgname}-${_pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd ${srcdir}/build + make DESTDIR=${pkgdir} install +} diff --git a/community/krecipes/krecipes.install b/community/krecipes/krecipes.install new file mode 100644 index 000000000..3f06b8deb --- /dev/null +++ b/community/krecipes/krecipes.install @@ -0,0 +1,12 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null + update-mime-database usr/share/mime &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} |