This commit is contained in:
Brian Bidulock
2018-12-12 01:58:18 -07:00
parent df259f882b
commit fdadd87468
2 changed files with 13 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
# Maintainer: Pierre Carrier <pierre@gcarrier.fr>
pkgname=sensible-utils
pkgver=0.0.9
pkgver=0.0.12
pkgrel=1
pkgdesc="Utilities for sensible alternative selection"
arch=('any')
@@ -8,22 +8,26 @@ url="http://packages.debian.org/source/sid/sensible-utils"
license=('GPL')
depends=('bash')
makedepends=('po4a')
source=(http://ftp.de.debian.org/debian/pool/main/s/$pkgname/${pkgname}_$pkgver.tar.gz)
md5sums=('559012932ffa95a7bbd8f8423869b652')
source=(http://ftp.de.debian.org/debian/pool/main/s/$pkgname/${pkgname}_$pkgver.tar.xz)
sha256sums=('99ba2ebf8c57447c69d426b99b84ff9dc817be0bc4988ec6890a14558c529e2e')
build() {
cd $pkgname-$pkgver
cd $pkgname.git
export -n EDITOR VISUAL
./configure --prefix=/usr
make
}
check() {
cd $pkgname-$pkgver
cd $pkgname.git
# need --nocheck for makechrootpkg inpite of this
export -n EDITOR VISUAL
make -k check
}
package() {
cd $pkgname-$pkgver
cd $pkgname.git
export -n EDITOR VISUAL
make DESTDIR="$pkgdir/" install
}