Date: Wednesday, March 27, 2019 @ 15:38:53 Author: arodseth Revision: 444499
upgpkg: alleyoop 0.9.8-7 Modified: alleyoop/trunk/PKGBUILD ----------+ PKGBUILD | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-03-27 15:34:50 UTC (rev 444498) +++ PKGBUILD 2019-03-27 15:38:53 UTC (rev 444499) @@ -1,19 +1,19 @@ -# Maintainer: Alexander F Rødseth <[email protected]> +# Maintainer: Alexander F. Rødseth <[email protected]> # Contributor: Angelo Theodorou <[email protected]> -# Contributor: Lex Rivera aka x-demon <[email protected]> +# Contributor: Lex Rivera <[email protected]> # Contributor: Gianluca Sforna <[email protected]> pkgname=alleyoop pkgver=0.9.8 -pkgrel=6 +pkgrel=7 pkgdesc='Valgrind front-end for the GNOME environment' -arch=('x86_64') +arch=(x86_64) url='https://alleyoop.sourceforge.net/' -license=('GPL2') -depends=('valgrind' 'gconf' 'gtk2') -makedepends=('gnome-common') +license=(GPL2) +depends=(gconf gtk2 valgrind) +makedepends=(gnome-common) source=("https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz" - "http://roboticoverlords.org/$pkgname/$pkgname"{16,32,64,128,256}.png + "https://roboticoverlords.org/$pkgname/$pkgname"{16,32,64,128,256}.png git-fixes.patch) sha256sums=('0b36fd3af83aa74d363a5d13414b7a38c3efabd2fce0fbeb2a8171998e0b6756' '470287270aafada00fc1be9e47713a62b44836fca677a0a2ea29f2bcbd46926f' @@ -24,29 +24,26 @@ '4717940eea026bf2b38ca704a35c2a7169c84315554768e1a39265522a509014') prepare() { - cd "$pkgname-$pkgver" - + cd $pkgname-$pkgver patch -Np1 -i ../git-fixes.patch ./autogen.sh } build() { - cd "$pkgname-$pkgver" - + cd $pkgname-$pkgver ./configure \ --prefix=/usr \ --disable-schemas-install \ --with-gconf-schema-file-dir=/usr/share/gconf/schemas - make } package() { - make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install + make -C $pkgname-$pkgver DESTDIR="$pkgdir" install for dim in 16 32 64 128 256; do install -Dm644 "${pkgname}${dim}.png" \ "$pkgdir/usr/share/icons/hicolor/${dim}x$dim/apps/$pkgname.png" - done + done } # vim:ts=2 sw=2 et:
