mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 09:37:14 +08:00
89f5fdf6ea
- added some makedeps - fixed some pkgs - broken pkgs: 7
25 lines
727 B
Bash
25 lines
727 B
Bash
# $Id: PKGBUILD 51198 2009-09-05 20:05:48Z andrea $
|
|
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
|
|
# Contributor: Jan de Groot <jgc@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
pkgname=libmcrypt
|
|
pkgver=2.5.8
|
|
pkgrel=2
|
|
pkgdesc="A library which provides a uniform interface to several symmetric encryption algorithms"
|
|
url="http://mcrypt.sourceforge.net/"
|
|
arch=(i686 x86_64)
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/mcrypt/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('c4f491dd411a09e9de3b8702ea6f73eb')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr --mandir=/usr/share/man
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|