diff options
author | Mattias Andrée | 2015-06-12 14:06:36 +0200 |
---|---|---|
committer | Mattias Andrée | 2015-06-12 14:06:36 +0200 |
commit | feca1c609918d4a6cf0b8fbcfab03c0d56a13a08 (patch) | |
tree | 609771aa5f505aad8c8aef1e045108d825cc9692 | |
download | aur-feca1c609918d4a6cf0b8fbcfab03c0d56a13a08.tar.gz |
Initial import, version 1
-rw-r--r-- | .SRCINFO | 18 | ||||
-rw-r--r-- | PKGBUILD | 27 |
2 files changed, 45 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 00000000000..7c98afeb050 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,18 @@ +pkgbase = exec-as + pkgdesc = A command that lets you start another command with any argv[0] + pkgver = 1 + pkgrel = 1 + url = https://github.com/maandree/exec-as + arch = i686 + arch = x86_64 + license = GPL3 + makedepends = make + makedepends = coreutils + makedepends = gcc + makedepends = glibc + depends = glibc + source = https://github.com/maandree/exec-as/archive/1.tar.gz + sha256sums = 7327f390331a02ea4b6b09d3ae2f379a70249a8741eb20a1c6a94ea6c512ed2d + +pkgname = exec-as + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..649b50efe5d --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org> + +pkgname=exec-as +pkgver=1 +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) +#install=exec-as.install +source=($url/archive/$pkgver.tar.gz) +sha256sums=(7327f390331a02ea4b6b09d3ae2f379a70249a8741eb20a1c6a94ea6c512ed2d) + + +build() { + cd "$srcdir/$pkgname-$pkgver" + make PREFIX=/usr +} + + +package() { + cd "$srcdir/$pkgname-$pkgver" + make PREFIX=/usr install DESTDIR="$pkgdir" +} + |