mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 17:47:13 +08:00
29 lines
850 B
Bash
29 lines
850 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
# contributor: Josep Ma. Ferrer <txemaq[at]gmail[dot]com>
|
|
|
|
pkgname=('md5deep')
|
|
pkgver=3.7
|
|
pkgrel=1
|
|
pkgdesc="Set of programs to compute messages digests on an arbitrary number of files."
|
|
arch=('i686' 'x86_64')
|
|
url="http://md5deep.sorceforge.net/"
|
|
license=('GPL2')
|
|
depends=(glib2)
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('d103b738721c54a9bf535470b63d49dc')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
} |