mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 01:02:26 +01:00
40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=flashcache-utils
|
|
pkgver=3.1.3
|
|
pkgrel=0
|
|
pkgdesc="Userspace utilities for flashcache"
|
|
url="https://github.com/facebook/flashcache"
|
|
arch="all"
|
|
license="GPL"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="$depends_dev linux-headers"
|
|
install=""
|
|
subpackages=""
|
|
source="flashcache-$pkgver.tar.gz::https://github.com/facebook/flashcache/archive/$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/flashcache-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"/src
|
|
make -C utils
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"/src/utils
|
|
make install DESTDIR="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="f5d99f62b1d36789460bb59a44f141b4 flashcache-3.1.3.tar.gz"
|
|
sha256sums="7eb0ec57ee557a560a2456ae0c8e0968589e463e09d62e56ec5f17df44e3e313 flashcache-3.1.3.tar.gz"
|
|
sha512sums="f7577993ca7962231b19d3141da22268f9b36bf2d60b83ad33c9cabcbae82db2ff2a1697a7137db61b06d5a8ea897a11dc7a80c9c85184c47feddd57d2297275 flashcache-3.1.3.tar.gz"
|