desktop/cksfv/PKGBUILD

28 lines
732 B
Bash
Raw Normal View History

2010-11-03 01:16:26 +08:00
#
# Chakra Packages for Chakra, part of chakra-project.org
#
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=cksfv
pkgver=1.3.14
2011-01-22 04:58:11 +08:00
pkgrel=2
2010-11-03 01:16:26 +08:00
pkgdesc="SFV (Simple File Verification) Checker"
arch=('i686' 'x86_64')
url="http://zakalwe.virtuaalipalvelin.net/~shd/foss/cksfv/"
license=('GPL')
depends=('glibc')
categories=('utils')
2010-11-03 01:16:26 +08:00
source=(http://zakalwe.fi/~shd/foss/cksfv/files/$pkgname-$pkgver.tar.gz)
md5sums=('2e15289753ea0b90b6ea86993f93b383')
build() {
cd ${srcdir}/$pkgname-$pkgver
./configure --prefix=/usr --package-prefix=${pkgdir}
2010-11-03 01:16:26 +08:00
make || return 1
make install
chmod 644 ${pkgdir}/usr/share/man/man1/$pkgname.1
2010-11-03 01:16:26 +08:00
}