Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build adcli 0.9.2 #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ Gemfile.lock
*.gem
Makefile
tmp
ltmain.sh
4 changes: 4 additions & 0 deletions Dockerfile.libadcli
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM fedora:latest
COPY build-adcli.sh /bin/build-adcli.sh
WORKDIR /buildroot
RUN /bin/build-adcli.sh
17 changes: 17 additions & 0 deletions build-adcli.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/sh

dnf -y update
dnf -y groupinstall 'Development Tools'
dnf -y install libtool automake autoconf xmlto xsltproc krb5-devel openldap-devel cyrus-sasl-devel

rm -rf ./adcli && git clone https://gitlab.freedesktop.org/realmd/adcli.git
cd ./adcli
autoreconf -i
./autogen.sh --prefix=/usr --sysconfdir=/etc
make

cp ./library/.libs/libadcli.a /buildroot/

#mv ./library/.libs/libadcli.a ../ext/lib/
#git add -f ./ext/lib/libadcli.a
#rm -rf ./adcli
Binary file modified ext/lib/libadcli.a
Binary file not shown.