diff options
author | davidovski <david@davidovski.xyz> | 2021-10-06 17:18:43 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-10-06 17:18:43 +0100 |
commit | c25b6890891c7ef34e129c8c54efdf2993234aa0 (patch) | |
tree | efce372f0cfbcdb2e4285ef65191cbbf1e3146e1 /xibuilds/shadow.xibuild | |
parent | d4cb1386d79c95e7586e7bccad5b0f6c7861cfe8 (diff) |
moved xibuilds to another repo
Diffstat (limited to 'xibuilds/shadow.xibuild')
-rw-r--r-- | xibuilds/shadow.xibuild | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/xibuilds/shadow.xibuild b/xibuilds/shadow.xibuild deleted file mode 100644 index ed786d4..0000000 --- a/xibuilds/shadow.xibuild +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/bash - -DEPS=(pam acl audit libcap libxcrypt) - -SOURCE=https://github.com/shadow-maint/shadow -DESC="Password and account management tool suite with support for shadow files and PAM" - -build () { - sed -i 's/groups$(EXEEXT) //' src/Makefile.in - find man -name Makefile.in -exec sed -i 's/groups\.1 / /' {} \; - find man -name Makefile.in -exec sed -i 's/getspnam\.3 / /' {} \; - find man -name Makefile.in -exec sed -i 's/passwd\.5 / /' {} \; - - - sed -e 's:#ENCRYPT_METHOD DES:ENCRYPT_METHOD SHA512:' \ - -e 's:/var/spool/mail:/var/mail:' \ - -e '/PATH=/{s@/sbin:@@;s@/bin:@@}' \ - - sed -e "224s/rounds/min_rounds/" -i libmisc/salt.c - - mkdir -p $PKG_DEST/usr/bin - touch $PKG_DEST/usr/bin/passwd - ./configure --sysconfdir=/etc --with-group-name-max-length=32 - - make - - make exec_prefix=/usr DESTDIR=$PKG_DEST install - - make DESTDIR=$PKG_DEST -C man install-man - -} - -package () { - mkdir -p $PKG_DEST/etc/default -} |