contrib/libmcrypt/Pkgfile

20 lines
419 B
Plaintext
Raw Normal View History

2023-08-13 11:02:17 +02:00
# Description: A replacement for the old crypt() package
# URL: https://mcrypt.sourceforge.net/
2023-08-18 19:34:32 +02:00
# Maintainer: unmaintained
2007-04-25 06:51:00 +02:00
name=libmcrypt
version=2.5.8
2020-01-20 16:04:14 +01:00
release=3
2023-08-13 11:02:17 +02:00
source=(https://downloads.sourceforge.net/project/mcrypt/Libmcrypt/$version/$name-$version.tar.gz)
2007-04-25 06:51:00 +02:00
2008-04-11 07:18:56 +02:00
build() {
2023-08-13 11:02:17 +02:00
cd $name-$version
2008-04-11 07:18:56 +02:00
2023-08-13 11:02:17 +02:00
./configure \
--prefix=/usr \
--mandir=/usr/share/man \
--disable-posix-threads
2008-04-11 07:18:56 +02:00
2023-08-13 11:02:17 +02:00
make DESTDIR=$PKG install
2007-04-25 06:51:00 +02:00
}