mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 22:27:12 +08:00
30 lines
917 B
Bash
30 lines
917 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
# Contributors from Arch: Andrzej Giniewicz <gginiu@gmail.com>
|
|
# Smith Dhumbumroong <zodmaner at gmail dot com>
|
|
|
|
pkgname=unionfs-fuse
|
|
pkgver=0.26
|
|
pkgrel=1
|
|
pkgdesc="unionfs-fuse is an effort to create a userland unionfs implementation that is way more flexible than the current in-kernel based unionfs solution."
|
|
arch=('i686' 'x86_64')
|
|
url="http://podgorny.cz/moin/UnionFsFuse"
|
|
license=('BSD')
|
|
depends=('fuse')
|
|
makedepends=('cmake')
|
|
source=(http://podgorny.cz/unionfs-fuse/releases/$pkgname-$pkgver.tar.xz)
|
|
md5sums=('689c636484756f6f7a728ef354cbeac2')
|
|
|
|
build() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" PREFIX=/usr install
|
|
install -Dm644 "$srcdir"/$pkgname-$pkgver/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
}
|