Date: Sunday, May 23, 2021 @ 09:27:04 Author: bgyorgy Revision: 943053
Adopt the package Modified: libclastfm/trunk/PKGBUILD ----------+ PKGBUILD | 31 +++++++++++++------------------ 1 file changed, 13 insertions(+), 18 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2021-05-23 09:26:03 UTC (rev 943052) +++ PKGBUILD 2021-05-23 09:27:04 UTC (rev 943053) @@ -1,31 +1,26 @@ -# Maintainer: Konstantin Gizdov <a...@kge.pw> +# Maintainer: Balló György <ballogyor+arch at gmail dot com> +# Contributor: Konstantin Gizdov <a...@kge.pw> # Contributor: Alad Wenter <a...@mailbox.org> # Contributor: Thorsten Töpper <atsutane...@freethoughts.de> + pkgname=libclastfm pkgver=0.5 pkgrel=6 -pkgdesc="An unofficial C-API for the Last.fm web service" -arch=("x86_64") -url="http://liblastfm.sourceforge.net/" -license=('GPL') -depends=("curl") +pkgdesc='Unofficial C-API for the Last.fm web service' +arch=('x86_64') +url='http://liblastfm.sourceforge.net/' +license=('GPL3') +depends=('curl') source=("https://downloads.sourceforge.net/liblastfm/$pkgname-$pkgver.tar.gz") sha256sums=('c9aa7817b557f8d8ef834755740fc813f9351f3185b5bdf4de249bee3675ee42') build() { - cd "${pkgname}-${pkgver}" - ./configure --prefix=/usr - make + cd $pkgname-$pkgver + ./configure --prefix=/usr + make } -check() { - cd "${pkgname}-${pkgver}" - make -k check -} - package() { - cd "${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}/" install + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install } - -# vim:set ts=4 sw=4 et: