mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 09:07:14 +08:00
bug fix update gptfdisk, mtools update
This commit is contained in:
parent
b6e01d8c17
commit
4733301491
@ -5,7 +5,7 @@
|
||||
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
||||
|
||||
pkgname=gptfdisk
|
||||
pkgver=0.8.0
|
||||
pkgver=0.8.1
|
||||
pkgrel=1
|
||||
pkgdesc="A text-mode partitioning tool that works on Globally Unique Identifier (GUID) Partition Table (GPT) disks"
|
||||
arch=('i686' 'x86_64')
|
||||
@ -16,7 +16,7 @@ provides=("gdisk=$pkgver")
|
||||
conflicts=('gdisk')
|
||||
replaces=('gdisk')
|
||||
source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
|
||||
md5sums=('f38e33a9bc644ec1dee50fdc3dfe4d69')
|
||||
md5sums=('f556297cce00ef096de11d504d85b9a9')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
@ -1,9 +1,10 @@
|
||||
# $Id: PKGBUILD 72260 2010-03-13 21:44:43Z giovanni $
|
||||
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
||||
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
||||
# Platform 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>
|
||||
|
||||
pkgname=mtools
|
||||
pkgver=4.0.13
|
||||
pkgver=4.0.17
|
||||
pkgrel=1
|
||||
pkgdesc="A collection of utilities to access MS-DOS disks"
|
||||
arch=('i686' 'x86_64')
|
||||
@ -16,15 +17,22 @@ optdepends=('libx11: required by floppyd'
|
||||
backup=('etc/mtools.conf')
|
||||
install=mtools.install
|
||||
source=(http://ftp.gnu.org/gnu/mtools/${pkgname}-${pkgver}.tar.bz2)
|
||||
md5sums=('334fe1580d6e3f4b5c904ce097267477')
|
||||
md5sums=('15571c615d8f75f5f6d294272f80c7fa')
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
|
||||
sed -i '/^SAMPLE FILE$/s:^:# :' mtools.conf
|
||||
./configure --prefix=/usr \
|
||||
--mandir=/usr/share/man \
|
||||
--infodir=/usr/share/info \
|
||||
--sysconfdir=/etc
|
||||
make || return 1
|
||||
make -j 1 prefix="${pkgdir}/usr" install || return 1
|
||||
install -Dm644 mtools.conf "${pkgdir}/etc/mtools.conf" || return 1
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
|
||||
make -j 1 DESTDIR="${pkgdir}" install
|
||||
install -Dm644 mtools.conf "${pkgdir}/etc/mtools.conf"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user