blob: a32329fd3270383ec918b65035a9d01b73575192 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Maintainer: aksr <aksr at t-com dot me>
pkgname=pifs-git
pkgver=r21.3d9cc9d
pkgrel=1
epoch=
pkgdesc="πfs - the data-free filesystem!"
arch=('i686' 'x86_64')
url="https://github.com/philipl/pifs"
license=('GPLv3')
categories=()
groups=()
depends=('fuse2')
makedepends=('git')
optdepends=()
checkdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
changelog=
install=${pkgname}.install
source=("$pkgname::git+https://github.com/philipl/pifs.git")
noextract=()
md5sums=('SKIP')
pkgver() {
cd "$srcdir/$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$srcdir/$pkgname"
./autogen.sh
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname"
make DESTDIR="$pkgdir/" install
install -Dm644 README.md $pkgdir/usr/share/doc/${pkgname%-*}/README.md
install -Dm644 COPYING $pkgdir/usr/share/licenses/${pkgname%-*}/LICENSE
}
|