mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
update flashbench to pacman 4.1
This commit is contained in:
parent
56ce292dba
commit
3f27a98783
1 changed files with 13 additions and 26 deletions
|
@ -1,41 +1,28 @@
|
||||||
# Maintainer: Marti Raudsepp <marti@juffo.org>
|
# Maintainer: Marti Raudsepp <marti@juffo.org>
|
||||||
|
|
||||||
pkgname=flashbench-git
|
pkgname=flashbench-git
|
||||||
pkgver=20110219
|
pkgver=62.2e30b19
|
||||||
|
pkgver() {
|
||||||
|
cd "$srcdir/$pkgname"
|
||||||
|
echo $(git rev-list --count master).$(git rev-parse --short master)
|
||||||
|
}
|
||||||
|
epoch=1
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Tool for benchmarking and classifying flash memory drives"
|
pkgdesc="Tool for benchmarking and classifying flash memory drives"
|
||||||
arch=(i686 x86_64)
|
arch=(i686 x86_64)
|
||||||
license=('unknown')
|
license=('unknown')
|
||||||
url="https://lwn.net/SubscriberLink/428584/354d16fe00c90072/"
|
url="https://lwn.net/SubscriberLink/428584/354d16fe00c90072/"
|
||||||
depends=()
|
|
||||||
makedepends=('git')
|
makedepends=('git')
|
||||||
replaces=('flashbench')
|
replaces=('flashbench')
|
||||||
provides=('flashbench')
|
provides=('flashbench')
|
||||||
conflicts=('flashbench')
|
conflicts=('flashbench')
|
||||||
source=()
|
source=("$pkgname::git://git.linaro.org/people/arnd/flashbench.git")
|
||||||
|
md5sums=('SKIP')
|
||||||
_gitroot="git://git.linaro.org/people/arnd/flashbench.git"
|
|
||||||
_gitname="flashbench"
|
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "$srcdir"
|
make -C "$srcdir/$pkgname"
|
||||||
msg "Connecting to GIT server...."
|
}
|
||||||
|
package(){
|
||||||
if [ -d $_gitname ] ; then
|
install -Dm755 "$srcdir/$pkgname/flashbench" "$pkgdir/usr/bin/flashbench"
|
||||||
cd $_gitname && git pull origin
|
install -Dm755 "$srcdir/$pkgname/erase" "$pkgdir/usr/bin/flashbench"
|
||||||
msg "The local files are updated."
|
|
||||||
else
|
|
||||||
git clone $_gitroot $_gitname
|
|
||||||
fi
|
|
||||||
|
|
||||||
msg "GIT checkout done or server timeout"
|
|
||||||
msg "Starting make..."
|
|
||||||
|
|
||||||
rm -rf "$srcdir/$_gitname-build"
|
|
||||||
git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
|
|
||||||
cd "$srcdir/$_gitname-build"
|
|
||||||
|
|
||||||
make
|
|
||||||
mkdir -p $pkgdir/usr/bin
|
|
||||||
install -m755 flashbench erase $pkgdir/usr/bin/
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue