summaryrefslogtreecommitdiffstats
path: root/libnsl
diff options
context:
space:
mode:
authorzorz <zorz@krypt.sh>2026-05-05 18:29:35 +0300
committerzorz <zorz@krypt.sh>2026-05-05 18:29:35 +0300
commit3ee93968e10126adc7dad5c8872f0170c3421e13 (patch)
treebcac8daa62b6c9a94a48dae87f5d3f6de1985bba /libnsl
parent936433a5deb6ccc8f8476096f2c2b8dc72c33388 (diff)
downloadzorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.gz
zorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.xz
various obsolette
Diffstat (limited to 'libnsl')
-rw-r--r--libnsl/MAKEPKG27
1 files changed, 27 insertions, 0 deletions
diff --git a/libnsl/MAKEPKG b/libnsl/MAKEPKG
new file mode 100644
index 0000000..d89cfd9
--- /dev/null
+++ b/libnsl/MAKEPKG
@@ -0,0 +1,27 @@
1#!/bin/mkpkg
2# description: Public client interface library for NIS(YP) and NIS+ from glibc
3# url: https://github.com/thkukuk/libnsl
4
5name=libnsl
6version=2.0.1
7release=1
8depends=(libtirpc)
9makedeps=(autoconf)
10source=(https://github.com/thkukuk/libnsl/releases/download/v$version/$name-$version.tar.xz)
11
12sha256sums=(
13 "5c9e470b232a7acd3433491ac5221b4832f0c71318618dc6aa04dd05ffcd8fd9"
14)
15
16build() {
17 cd $name-$version
18
19 ./configure --prefix=/usr
20
21 make
22 make DESTDIR=$PKG install
23
24 rm -f $PKG/usr/lib/*.la
25}
26
27# vim: filetype=sh