Add lockrun

This commit is contained in:
Travis Burtrum 2017-01-11 00:45:37 -05:00
parent a1903c59ae
commit 4615c41709
2 changed files with 42 additions and 0 deletions

17
src/lockrun/.SRCINFO Normal file
View File

@ -0,0 +1,17 @@
# Generated by mksrcinfo v8
# Wed Oct 26 02:07:06 UTC 2016
pkgbase = lockrun
pkgdesc = Exclusively run things via lock files
pkgver = 0.6.2
pkgrel = 2
url = https://github.com/hilbix/lockrun
arch = i686
arch = x86_64
arch = armv7h
license = GPL
depends = glibc
source = http://scylla-charybdis.com/download/lockrun-0.6.2-20110613-163042.tar.gz
md5sums = 304146202b9972ae9cb3afa37fe16c51
pkgname = lockrun

25
src/lockrun/PKGBUILD Normal file
View File

@ -0,0 +1,25 @@
# Maintainer: Alexej Magura <alexej@Aya.localdomain>
pkgname=lockrun
pkgver=0.6.2
_pkgver=20110613-163042
pkgrel=2
pkgdesc="Exclusively run things via lock files"
arch=('i686' 'x86_64' 'armv7h')
url="https://github.com/hilbix/lockrun"
license=('GPL')
depends=('glibc')
source=("http://scylla-charybdis.com/download/$pkgname-$pkgver-20110613-163042.tar.gz")
md5sums=('304146202b9972ae9cb3afa37fe16c51')
build() {
cd "$srcdir/$pkgname-$pkgver-$_pkgver"
make
}
package() {
cd "$srcdir/$pkgname-$pkgver-$_pkgver"
install -Dm 755 "$pkgname" "$pkgdir"/usr/bin/"$pkgname"
}
# vim:set ts=2 sw=2 et: