|
|

楼主 |
发表于 2009-8-26 19:53:31
|
显示全部楼层
Post by lolilolicon;2020608
需要md5值
啊?
是在PKGBUILD里添加么?
我的如下:
# Contributor: Mark Taylor <skymt0@gmail.com>
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
# AT&T requires the user to agree to a license agreement before
# downloading the source, so I didn't include the direct URLs in the
# PKGBUILD. Just visit 'http://www.research.att.com/~gsf/download/',
# download 'ast-ksh.2007-11-05.tgz' and 'INIT.2007-11-05.tgz', and
# place them in the same directory as the PKGBUILD before running
# makepkg
pkgname=ksh
pkgver=20090505
pkgrel=1
pkgdesc="AT&T's Korn shell"
arch=('i686' 'x86_64')
url="http://www.kornshell.com/"
license=('CPL')
conflicts=('pdksh')
install=ksh.install
source=('INIT.2009-05-05.tgz' 'ast-ksh.2009-05-05.tgz')
build() {
cd $srcdir
bin/package make || return 1
# Install manually to avoid nmake dep
install -Dm755 arch/linux.*/bin/ksh $pkgdir/bin/ksh ||return 1
for _i in 1 3
do
install -d $pkgdir/usr/share/man/man${_i} || return 1
cp -r arch/linux.*/man/man${_i} $pkgdir/usr/share/man/man${_i}
done
} |
|