inital commit
This commit is contained in:
commit
668c36dbca
2 changed files with 37 additions and 0 deletions
15
.SRCINFO
Normal file
15
.SRCINFO
Normal file
|
@ -0,0 +1,15 @@
|
|||
# Generated by mksrcinfo v8
|
||||
# Thu Nov 9 01:31:57 UTC 2017
|
||||
pkgbase = libnss-extrausers
|
||||
pkgdesc = nss module to have an additional passwd, shadow and group file
|
||||
pkgver = 0.6
|
||||
pkgrel = 2
|
||||
url = https://anonscm.debian.org/cgit/collab-maint/libnss-extrausers.git/log/?h=debian
|
||||
arch = any
|
||||
license = GPL
|
||||
makedepends = gcc
|
||||
source = http://http.debian.net/debian/pool/main/libn/libnss-extrausers/libnss-extrausers_0.6.orig.tar.gz
|
||||
sha256sums = 6a37c3cf6ff5dfd46b1b3127e1226404e43185fa73cd40e8144d5f7736eee9f0
|
||||
|
||||
pkgname = libnss-extrausers
|
||||
|
22
PKGBUILD
Normal file
22
PKGBUILD
Normal file
|
@ -0,0 +1,22 @@
|
|||
# Maintainer: lod <aur@cyber-anlage.de>
|
||||
pkgname=libnss-extrausers
|
||||
pkgver=0.6
|
||||
pkgrel=2
|
||||
pkgdesc="nss module to have an additional passwd, shadow and group file"
|
||||
arch=('any')
|
||||
url="https://anonscm.debian.org/cgit/collab-maint/libnss-extrausers.git/log/?h=debian"
|
||||
license=('GPL')
|
||||
makedepends=('gcc')
|
||||
source=(http://http.debian.net/debian/pool/main/libn/$pkgname/${pkgname}_$pkgver.orig.tar.gz)
|
||||
sha256sums=('6a37c3cf6ff5dfd46b1b3127e1226404e43185fa73cd40e8144d5f7736eee9f0')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
||||
|
Loading…
Reference in a new issue