diff options
author | Mattias Andrée | 2017-10-17 17:33:20 +0200 |
---|---|---|
committer | Mattias Andrée | 2017-10-17 17:33:20 +0200 |
commit | 0942dade043e3ec41fc48dd0b722171d8b9ee06f (patch) | |
tree | 9249433b37e3f673503948eed9ef9be2aac20cbd | |
parent | bf7a63b206dc89bb6c24ae86f8da3cd92f101b17 (diff) | |
download | aur-0942dade043e3ec41fc48dd0b722171d8b9ee06f.tar.gz |
Update to 1.2
-rw-r--r-- | .SRCINFO | 17 | ||||
-rw-r--r-- | PKGBUILD | 22 |
2 files changed, 16 insertions, 23 deletions
@@ -1,20 +1,15 @@ +# Generated by mksrcinfo v8 +# Tue Oct 17 15:33:20 UTC 2017 pkgbase = exec-as pkgdesc = A command that lets you start another command with any argv[0] - pkgver = 1.1 + pkgver = 1.2 pkgrel = 1 url = https://github.com/maandree/exec-as - install = exec-as.install arch = i686 arch = x86_64 - license = GPL3 - makedepends = make - makedepends = coreutils - makedepends = gcc - makedepends = glibc - makedepends = texinfo - depends = glibc - source = https://github.com/maandree/exec-as/archive/1.1.tar.gz - sha256sums = 7dd73559c42cdb047dd74d735642f0a4f39790b16d44f23841935e69da926f4d + license = ISC + source = exec-as-1.2.tar.gz::https://github.com/maandree/exec-as/archive/1.2.tar.gz + sha256sums = 8e88fb15fe64a5807e2e814f9c9d2608cb7873997b59279983c724ff2c3c66b8 pkgname = exec-as @@ -1,27 +1,25 @@ -# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org> - +# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@kth.se> pkgname=exec-as -pkgver=1.1 +pkgver=1.2 pkgrel=1 pkgdesc="A command that lets you start another command with any argv[0]" arch=(i686 x86_64) url="https://github.com/maandree/exec-as" -license=('GPL3') -depends=(glibc) -makedepends=(make coreutils gcc glibc texinfo) -install=exec-as.install -source=($url/archive/$pkgver.tar.gz) -sha256sums=(7dd73559c42cdb047dd74d735642f0a4f39790b16d44f23841935e69da926f4d) - +license=('ISC') +source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz") +sha256sums=(8e88fb15fe64a5807e2e814f9c9d2608cb7873997b59279983c724ff2c3c66b8) build() { cd "$srcdir/$pkgname-$pkgver" make PREFIX=/usr } +check() { + cd "$srcdir/$pkgname-$pkgver" + make check +} package() { cd "$srcdir/$pkgname-$pkgver" - make PREFIX=/usr install DESTDIR="$pkgdir" + make install PREFIX=/usr DESTDIR="$pkgdir" } - |