From 8084695956759f1ce777988ec8606e98a5bd0336 Mon Sep 17 00:00:00 2001 From: Fredrick Brennan Date: Sat, 8 Apr 2023 14:18:25 -0400 Subject: [PATCH] version 0.0.18 --- PKGBUILD | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 6f2883e..048c4c8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,8 @@ -# Maintainer: Brian BIdulock +# Maintainer: Fredrick R. Brennan +# Contributor: Brian BIdulock pkgname=sensible-utils -pkgver=0.0.14 +pkgver=0.0.17 +_debianextra=+nmu1 pkgrel=1 pkgdesc="Utilities for sensible alternative selection" arch=('any') @@ -9,27 +11,24 @@ license=('GPL') depends=('bash') makedepends=('po4a') checkdepends=('ed') -source=(http://ftp.debian.org/debian/pool/main/s/$pkgname/${pkgname}_$pkgver.tar.xz) -sha256sums=('a6ee528bf4122d77acacdb97f20cd0434a12ad3ecd119186a5fcee066844c644') +source=(http://ftp.debian.org/debian/pool/main/s/$pkgname/${pkgname}_${pkgver}${_debianextra}.tar.xz) +sha256sums=('a4ead62e0dc8f965453221dcb09c964abc4f1bedad24f527d33c443a1570cb31') build() { -# cd $pkgname-$pkgver - cd $pkgname.git + cd ${pkgname}-${pkgver}${_debianextra} export -n EDITOR VISUAL ./configure --prefix=/usr make } check() { -# cd $pkgname-$pkgver - cd $pkgname.git + cd ${pkgname}-${pkgver}${_debianextra} export -n EDITOR VISUAL make -k check } package() { -# cd $pkgname-$pkgver - cd $pkgname.git + cd ${pkgname}-${pkgver}${_debianextra} export -n EDITOR VISUAL make DESTDIR="$pkgdir/" install }