Date: Thursday, February 20, 2020 @ 08:51:46 Author: felixonmars Revision: 576991
upgpkg: peony 2.0.1-1 Modified: peony/trunk/PKGBUILD ----------+ PKGBUILD | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-02-20 08:50:35 UTC (rev 576990) +++ PKGBUILD 2020-02-20 08:51:46 UTC (rev 576991) @@ -1,29 +1,26 @@ # Maintainer: Felix Yan <felixonm...@archlinux.org> pkgname=peony -pkgver=1.1.6 +pkgver=2.0.1 pkgrel=1 pkgdesc="file manager for the UKUI desktop" arch=('x86_64') license=('GPL') url="https://github.com/ukui/peony" -depends=('atril' 'gtksourceview3' 'mate-desktop' 'libnotify' 'libsm' 'udisks2' 'webkit2gtk') -makedepends=('gobject-introspection' 'mate-common') +depends=('gsettings-qt' 'poppler-qt5' 'qt5-x11extras') +makedepends=('qt5-tools') +groups=('ukui') source=("$pkgname-$pkgver.tar.gz::https://github.com/ukui/peony/archive/v$pkgver.tar.gz") -sha512sums=('8142787069be5fa6bb232df501703ca2fbaac2826a1ee60716dd1e7c98bcefd170f87bac291e90737b229c6c1432b1a5feb04cbdceb01c878177a95e27ac1f6f') +sha512sums=('b2a3729e446de027839ba895b66c1236a483ef96cd0481e809856cb8083d75faa0000adc304cdcac4243c59328baac07c73ce58bc3acf2dadcd315fbae1f6945') -prepare() { - cd $pkgname-$pkgver - NOCONFIGURE=1 ./autogen.sh -} +build() { + cd peony-$pkgver -build() { - cd $pkgname-$pkgver - ./configure --prefix=/usr --libexecdir=/usr/lib/$pkgname --enable-introspection --disable-update-mimedb + qmake-qt5 make } package() { - cd $pkgname-$pkgver - make DESTDIR="$pkgdir" install + cd peony-$pkgver + make INSTALL_ROOT="$pkgdir" install }