You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
424 B
10 lines
424 B
TERMUX_PKG_HOMEPAGE=http://michael.dipperstein.com/crypt/
|
|
TERMUX_PKG_DESCRIPTION="A crypt(3) implementation"
|
|
TERMUX_PKG_VERSION=0.2
|
|
TERMUX_PKG_DEPENDS="openssl"
|
|
|
|
termux_step_make_install () {
|
|
$CC $CFLAGS $CPPFLAGS $LDFLAGS -Wall -Wextra -fPIC -shared $TERMUX_PKG_BUILDER_DIR/crypt3.c -lcrypto -o $TERMUX_PREFIX/lib/libcrypt.so
|
|
mkdir -p $TERMUX_PREFIX/include/
|
|
cp $TERMUX_PKG_BUILDER_DIR/crypt.h $TERMUX_PREFIX/include/
|
|
}
|
|
|